Matplotlib 控制pyplot中x记号的数量

Matplotlib 控制pyplot中x记号的数量,matplotlib,Matplotlib,我想显示所有13个x记号,但图表只显示其中7个有两个间隔 为什么上面的代码不起作用 import numpy as np import matplotlib.pyplot as plt import pandas as pd import matplotlib.dates as dates y = [0, 0.86, 0.826, 0.816, 0.807, 0.803, 0.804, 0.803, 0.802,0.81, 0.813, 0.813, 0.813] times = pd.da

我想显示所有13个x记号,但图表只显示其中7个有两个间隔

为什么上面的代码不起作用

import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import matplotlib.dates as dates

y = [0, 0.86, 0.826, 0.816, 0.807, 0.803, 0.804, 0.803, 0.802,0.81, 0.813, 0.813, 0.813]

times = pd.date_range('2015-02-25', periods=13)
fig, ax = plt.subplots(1)
fig.autofmt_xdate()

xfmt = dates.DateFormatter('%d-%m-%y')
ax.xaxis.set_major_formatter(xfmt)

plt.locator_params(axis='x',nbins=13)

ax.plot_date(times.to_pydatetime(), y, 'v-')
ax.xaxis.set_minor_locator(dates.WeekdayLocator(byweekday=(1),
                                            interval=1))
ax.xaxis.set_minor_formatter(dates.DateFormatter('%d\n%a'))
ax.xaxis.grid(True, which="minor")
ax.yaxis.grid()
plt.tight_layout()
plt.show()

警告应该会给您一些发生这种情况的线索:

UserWarning: 'set_params()' not defined for locator of type <class 'pandas.tseries.converter.PandasAutoDateLocator'>
  str(type(self)))

警告应该会给您一些发生这种情况的线索:

UserWarning: 'set_params()' not defined for locator of type <class 'pandas.tseries.converter.PandasAutoDateLocator'>
  str(type(self)))

如果一个答案回答了你的问题,让别人知道你的问题在第一眼看到的时候就行了。如果一个答案回答了你的问题,让别人知道你的问题在第一眼看到的时候就行了。
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import matplotlib.dates as dates

y = [0, 0.86, 0.826, 0.816, 0.807, 0.803, 0.804, 0.803, 0.802,0.81, 0.813, 0.813, 0.813]

times = pd.date_range('2015-02-25', periods=13)
fig, ax = plt.subplots(1)
fig.autofmt_xdate()

xfmt = dates.DateFormatter('%d-%m-%y')
ax.xaxis.set_major_formatter(xfmt)


ax.plot_date(times.to_pydatetime(), y, 'v-')
ax.xaxis.set_minor_locator(dates.WeekdayLocator(byweekday=(1),
                                            interval=1))
plt.xticks(times.to_pydatetime())
ax.xaxis.set_minor_formatter(dates.DateFormatter('%d\n%a'))
ax.xaxis.grid(True, which="minor")
ax.yaxis.grid()
plt.tight_layout()
plt.show()