绘制简单的折线图

1.平方数折线图

import matplotlib.pyplot as plt

input_values=[1,2,3,4,5]
squares=[1,4,9,16,25]
plt.plot(input_values,squares,linewidth=5)

plt.title("Square Numbers", fontsize=24)
plt.xlabel("Value", fontsize=14)
plt.ylabel("Square of Value", fontsize=14)

plt.tick_params(axis='both',labelsize=14)
plt.show()

猜你喜欢

转载自www.cnblogs.com/exciting/p/9005399.html