matplotlib.pyplot画图的基础例子
程序员文章站
2022-03-21 14:26:00
...
#导入包
import matplotlib.pyplot as plt
import numpy as np
#创建数据
x = np.linspace(-5, 5, 100)
y1 = np.sin(x)
y2 = np.cos(x)
#创建figure窗口
plt.figure(num=3, figsize=(8, 5))
#画曲线1
plt.plot(x, y1)
#画曲线2
plt.plot(x, y2, color='blue', linewidth=5.0, linestyle='--')
#设置坐标轴范围
plt.xlim((-5, 5))
plt.ylim((-2, 2))
#设置坐标轴刻度
my_x_ticks = np.arange(-5, 5, 1)
my_y_ticks = np.arange(-2, 2, 0.3)
plt.xticks(my_x_ticks)
plt.yticks(my_y_ticks)
#设置坐标轴、图表名称
plt.ylabel('########')
plt.xlabel('########')
plt.title("###########")
# 网格设置
plt.grid()
plt.legend()
#显示出所有设置
plt.show()