X轴间隔显示-长江水位
程序员文章站
2022-03-03 10:20:17
...
import matplotlib.pyplot as plt
plt.style.use('ggplot')
fig =plt.figure(figsize=(15,5)) #图像大小 figsize=(13,5)
ax = fig.add_subplot(111)
ax.plot(x, y, ls=":", marker='+',markersize=5,label = 'Tweets')
ax.plot(x, y1, ls="-.", marker='.',markersize=5,label = 'Thumbs up')
ax.plot(x, y2, ls=":", marker='*',markersize=5, label = 'Repost')
ax.plot(x, y3,ls="--", marker = "x",markersize=5, label = 'Comment')
# tempstd=df.groupby('day').std()['temperature']
# humstd=df.groupby('day').std()['humidity']
# ax.errorbar(x, y, fmt="g_:", yerr=rainstd/2, label = 'precipitation')
ax.set_xlabel("day")
ax.set_ylabel(r"Number")
plt.title("Discussion of trends from 2012 to 2020")#标题
# plt.grid()
totalSeed = x.tolist()
xticks=list(range(0,len(totalSeed),6))
xlabels=[totalSeed[x] for x in xticks]
xticks.append(len(totalSeed))
xlabels.append(totalSeed[-1])
ax.set_xticks(xticks)
ax.set_xticklabels(xlabels)
ax.set_xticklabels(labels=x) # 旋转90度
plt.legend()
plt.savefig('weibo2.svg',format='svg')
plt.show()
上一篇: JDBC工具类
下一篇: Python2到Python3的变化
推荐阅读
-
matplotlib 画双轴子图无法显示x轴的解决方法
-
Echarts X轴内容过长自动隐藏,鼠标移动上去显示全部名称方法
-
python画图系列之个性化显示x轴区段文字的实例
-
Echarts X轴 Y轴 name 显示不全
-
echarts柱状图X轴底部文字有的不显示出来?
-
echarts显示X轴最后一个lable
-
Winform中设置ZedGraph的X轴与Y轴的刻度不在对面显示
-
Winform中设置ZedGraph鼠标悬浮显示举例最近曲线上的点的坐标值和X轴与Y轴的标题
-
Winform(C#)中Chart控件鼠标点击显示波形上相应点对应坐标轴的x,y值
-
python plt x轴坐标按1刻度显示