plt.plot()、plt.subplots():python简单画图和复杂画图

用python简单的画图

import matplotlib.pyplot as plt
plt.plot(x,y)
plt.show()

用python更复杂,灵活度更高的画图

import matplotlib.pyplot as plt 
fig, axis = plt.subplots()
options = dict(marker='o',color='blue') #设置一个图表的风格
line=axis.plot(x,y,**options) #用双星号**打开上面的options
_ = axis.set_xlabel('...') #python默认把任何没有使用过的输出放在下划线里
_ = axis.set_ylabel('...')
plt.show()

 

你可能感兴趣的:(python,数据可视化,matplotlib,数据分析)