matplotlib plt.plot

实例1

import matplotlib.pyplot as plt

a = [1, 2, 3, 4] # y 是 a的值,x是各个元素的索引
b = [5, 6, 7, 8]

plt.figure('demon plot')
plt.plot(a, b, 'r--', label = 'aa')
plt.xlabel('this is x')
plt.ylabel('this is y')
plt.title('this is a demo')
plt.legend(loc='upper left') # 将样例显示出来

plt.show()

运行结果

matplotlib plt.plot_第1张图片

 

实例2

import numpy as np
import matplotlib.pyplot as plt

# 定义x,y
X = np.linspace(0, 2*np.pi, 32, endpoint=True)
C = np.cos(X)

# figure的名称
plt.figure('demon plot')
# 画图
plt.plot(X, C, 'r--', label = 'cos')

# 显示x、y坐标代表的含义
plt.xlabel('this is x')
plt.ylabel('this is y')

# 显示图的标题
plt.title('this is a demo')

# 显示图例
plt.legend(loc='lower right')

plt.show()

运行结果

matplotlib plt.plot_第2张图片

 

你可能感兴趣的:(matplotlib)