Matplotlib练习1

效果

Matplotlib练习1_第1张图片
三次幂.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图例等绘图区域名称

你可能感兴趣的:(Matplotlib练习1)