python 使用日期自定义x轴样式。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用日期自定义x轴样式。相关的知识,希望对你有一定的参考价值。

import matplotlib.dates as mdates

plot.hist(mdates.date2num(dts), 100)		# plot the histogram

ax = plt.gca()
ax.xaxis.set_major_locator(mdates.AutoDateLocator())		  	# set the major ticker, use AutoDateLocator
ax.xaxis.set_major_formatter(mdates.DateFormatter('%m-%d'))	# show the label			
ax.xaxis.set_minor_locator(mdates.DayLocator())				      # set the minor ticker, use DayLocator

以上是关于python 使用日期自定义x轴样式。的主要内容,如果未能解决你的问题,请参考以下文章

使用 matplotlib 在时间序列中自定义日期范围(x 轴)

如何自定义 Pandas 日期时间戳@ x 轴

python使用matplotlib可视化为可视化图像的X轴和Y轴设置自定义的轴标签(axis labels of matplotlib plot)

python使用matplotlib可视化自定义设置X轴刻度标签字体的大小( setting axis ticks size in matplotlib x axis)

python使用matplotlib可视化为X轴添加自定义文本轴刻度标签并旋转轴刻度标签(rotate custom text tick labels in matplotlib)

请教如何自定义python的matplotlib中的X轴刻度的问题