Python绘图
直接看Python科学计算:matplotlib吧…这里记录一些经常用到的命令。
首先导入包
import matplotlib.pyplot as plt
绘图样式
x = np.linspace(0, 4, 100)
y1 = x ** 2
y2 = 2 * x + 3
plt.plot(x, y1, color="b", linestyle=":", linewidth=3, dashes=(2,1), # 线的属性
marker="d", ms=10, mew=1.5, mec="g", mfc="w", # 点的属性
markevery=10)
plt.plot(x, y2, "#bf242a", ls="-", lw=1)
plt.show()
坐标轴标签,标题
plt.title('title')
plt.xlabel('X')
plt.ylabel('y')
对数坐标轴
plt.semilogy(x,y)
plt.semilogx(x,y)
plt.loglog(x,y)