1.做一个图
|import matplotlib.pyplot as plt
fig, ax = plt.subplots(1, 1)#构建一个fig ax 对象作图| |
plt.show()
|--------------------------------------------|–|
| | |
2.做一个两行一列的图
fig, ax1,ax2 = plt.subplots(2,1)#先行后列
1.做一个图
|import matplotlib.pyplot as plt
fig, ax = plt.subplots(1, 1)#构建一个fig ax 对象作图| |
plt.show()
|--------------------------------------------|–|
| | |
2.做一个两行一列的图
fig, ax1,ax2 = plt.subplots(2,1)#先行后列