matplotlib库之pyplot

plot函数

matplotlib库之pyplot_第1张图片
matplotlib.plot.png

plt.plot()函数实例

import matplotlib.pyplot as plt
import numpy as np 
a = np.arange(10)
plt.plot(a, a*1.5, a, a*2.5)
plt.show()
matplotlib库之pyplot_第2张图片
微信图片_20170919124045.png

format_string: 控制曲线格式的字符串

matplotlib库之pyplot_第3张图片
format_string .png
matplotlib库之pyplot_第4张图片
风格字符.png
matplotlib库之pyplot_第5张图片
标记字符.png
import matplotlib.pyplot as plt
import numpy as np 
a = np.arange(10)
plt.plot(a, a*1.5,'gx', a, a*2.5, 'ro-')
plt.show()
matplotlib库之pyplot_第6张图片
代表显示图片.png

你可能感兴趣的:(matplotlib库之pyplot)