matplotlib subplot

import matplotlib.pyplot as plt
import numpy as np

x = np.array([0, 1, 2, 3])
y = np.array([3, 8, 1, 10])

#plt.subplot(2,3, 1)
plt.subplot(231)
plt.plot(x,y)

x = np.array([0, 1, 2, 3])
y = np.array([10, 20, 30, 40])

#plt.subplot(2,3,2)
plt.subplot(232)
plt.plot(x,y)

x = np.array([0, 1, 2, 3])
y = np.array([3, 8, 1, 10])

#plt.subplot(2,3,3)
plt.subplot(233)
plt.plot(x,y)

x = np.array([0, 1, 2, 3])
y = np.array([10, 20, 30, 40])

#plt.subplot(2,3,4)
plt.subplot(234)
plt.plot(x,y)

x = np.array([0, 1, 2, 3])
y = np.array([3, 8, 1, 10])

#plt.subplot(2,3,5)
plt.subplot(235)
plt.plot(x,y)

x = np.array([0, 1, 2, 3])
y = np.array([10, 20, 30, 40])

#plt.subplot(2,3,6)
plt.subplot(236)
plt.plot(x,y)

plt.show()

你可能感兴趣的:(Python数据分析及可视化,其他)