首页 > 解决方案 > 如何格式化 x 轴以显示每年的主要刻度

问题描述

我尝试删除每个 set_xticks 或网格选项并仅绘制数据框,但我无法让 X 轴停止跳过年份。

日期跳过问题

索引是日期时间戳 YYYY-MM-DD,列都是浮点数。

DF结构

ax = Export_DF.plot.area()

ax.grid(color='black',alpha=.3)
ax.grid(which='minor', linestyle=':', linewidth='0.5', color='black')

major_ticks = np.arange(0, 101, 20)
minor_ticks = np.arange(0, 101, 5)

ax.set_yticks(major_ticks)
ax.set_yticks(minor_ticks, minor=True)

X_Dates = []
for i in range(12):
    X_Dates.append(pd.to_datetime('1/1/'+str(2010+i)))
ax.xticks(X_Dates)
ax.set_xticks(X_Dates,minor=True)

ax.grid(which='minor', alpha=0.3)
ax.grid(which='major', alpha=0.5)

handles, labels = ax.get_legend_handles_labels()
ax.legend(reversed(handles), reversed(labels),bbox_to_anchor=(1.02, 1))  # reverse both handles and labels

for i in range(len(Export_DF)):
    temp_series = Export_DF.iloc[i]
    temp_x_cord = temp_series.name
    count = [0]
    for j in temp_series:
        if j != 0:
            count.append(count[-1]+j)
            ax.annotate(str(round(j,1)),(temp_x_cord,(count[-1]+count[-2])/2),size=8,ha='center')

plt.show()

标签: pythonpandasmatplotlibplot

解决方案


  • 在轴上处理日期时间数据时,matplotlib.dates应使用。
  • 使用日期刻度标签所示的实现
  • datemin并且datemax必须采用日期时间格式才能被DateFormatter. 因此,使用np.datetime64(data.index.array[0], 'Y'), 导致numpy.datetime64('2021'), where asdata.index.year.min()导致int.
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
import numpy as np
import pandas as pd

# create a sample dataframe
data = pd.DataFrame({'v1': [10]*4000, 'v2': [20]*4000}, index=pd.bdate_range('2021-01-11', freq='D', periods=4000))

years = mdates.YearLocator()   # every year
years_fmt = mdates.DateFormatter('%Y')

# create the plot
ax = data.plot.area(x='date', figsize=(8, 6))

# format the ticks only for years on the major ticks
ax.xaxis.set_major_locator(years)
ax.xaxis.set_major_formatter(years_fmt)

# round to nearest years. Also, the index must be sorted and in a datetime format.
datemin = np.datetime64(data.index.array[0], 'Y')
datemax = np.datetime64(data.index.array[-1], 'Y') + np.timedelta64(1, 'Y')

# set the x-axis limits
ax.set_xlim(datemin, datemax)

# turn the grid on, if desired
ax.grid(True)

plt.show()

格式化绘图

在此处输入图像描述

未格式化的绘图

ax = data.plot.area(figsize=(8, 6))

在此处输入图像描述


推荐阅读