Python——绘制简单折线图

设置颜色,线宽,标题,X,Y输入输出值

import matplotlib.pyplot as plt

values = [1, 2, 3, 4, 5] #创建一个数组列表
square = [1, 4, 9, 16, 25]
plt.plot(values, square, linewidth=5, color='b') # 将列表传递给plot,并设置线宽,设置颜色,默认为蓝色
plt.title("Squares Number", fontsize=24, color='r')#设置标题,并给定字号,设置颜色
plt.xlabel("Value", fontsize=14, color='g')#设置轴标题,并给定字号,设置颜色
plt.ylabel("Squares Of Value", fontsize=14, color='g')
plt.tick_params(axis='both', labelsize=14)#设置刻度标记的大小
plt.show() #显示

Python——绘制简单折线图_第1张图片

你可能感兴趣的:(python)