1. 多曲线
1.1 使用pyplot方式
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(1, 11, 1)
plt.plot(x, x * 2, label="First")
plt.plot(x, x * 3, label="Second")
plt.plot(x, x * 4, label="Third")
plt.legend(loc=0, ncol=1) # 参数:loc设置显示的位置,0是自适应;ncol设置显示的列数
plt.show()
1.2 使用面向对象方式
import numpy
2022-01-22 15:44:28
70KB
c
cc
cu
1