效果
三次幂.png代码
# moduel
import matplotlib.pyplot as plt
import numpy as np
#中文兼容性
from pylab import *
mpl.rcParams['font.sans-serif'] = ['SimHei']
x =np.linspace(0,2,100)
plt.plot(x,x,label='linear')
plt.plot(x,x**2,label='quadratic')
plt.plot(x,x**3,label='三次幂')
plt.xlabel('x轴')
plt.ylabel('y轴')
plt.title("Simple Plot")
plt.legend()
plt.show()
复盘
- 中文兼容性
- 如Legend图例等绘图区域名称
网友评论