matplotlib折线图(折线颜色、透明度、折线样式和折线宽度)

代码示例:

from matplotlib import pyplot as plt
x = range(1,10) #x轴的位置
y = [6,7,12,12,15,17,15,20,18] #y轴的位置
#传入x,y,通过plot画图,并设置折线颜色、透明度、折线样式和折线宽度
plt.plot(x,y,color='red',alpha=0.3,linestyle='--',linewidth=5)
plt.show
'''基础属性设置
color='red'  :折线的颜色
a1pha=0.5  :折线的透明度(0-1)
linesty1e='--' :折线的样式
1inewidth=3  :折线的宽度
'''

'''
线的样式
-  实线(solid)
--  短线(dashed)
-.  短点相间线(dashdot)
:  虚点线(dotted)
111
'''

效果截图:

matplotlib折线图(折线颜色、透明度、折线样式和折线宽度)_第1张图片

你可能感兴趣的:(Matplotlib,Python基础知识,折线颜色,透明度,折线样式和折线宽度,matplotlib)