matplotlib
python中matplotlib笔记
Sallery
达梦数据库;oralce数据库运维;python爱好;
展开
-
matplotlib--------简单的折线图之x轴y轴刻度
import matplotlib.pyplot as pltfrom matplotlib import font_managerimport randomplt.figure(figsize=(20,8),dpi = 80) # 设置figure,dpix = range(2,26,2)y = [random.randint(15,30) for i in x ]...原创 2020-02-22 22:19:47 · 3793 阅读 · 0 评论 -
matplotlib--------简单折线图之折线的样式,折点的样式
1.简单实现一个折线图2.在生成一个简单的折线图3.设置折线的颜色和形状,改变折点的样式及形状(红配绿赛狗屁,手动狗头)plt.plot(x,y,这个位置进项改变折点的形状,折线的形形状)其中,折线的属性color = 'r' 折线为红色,这里可以写red也可以写 ralpha = 0.5 折线的透明度(0-1)linestyle = '--' 折线的...原创 2020-02-22 20:58:23 · 4093 阅读 · 0 评论 -
No handles with labels found to put in legend
错误的代码from matplotlib import pyplot as pltfrom matplotlib import font_managerimport randomyy = range(0,35,5)y1 = [random.randint(0,35) for i in yy]y2 = [random.randint(1,35) for i in yy]x =...原创 2020-02-16 23:29:08 · 1125 阅读 · 0 评论