3 回答

TA貢獻1744條經驗 獲得超4個贊
這是因為DateFormatter從日期的序數值中刪除了浮點數:
~/.local/bin/anaconda3/lib/python3.7/site-packages/matplotlib/dates.py in _from_ordinalf(x, tz)
281 tz = _get_rc_timezone()
282
--> 283 ix, remainder = divmod(x, 1)
284 ix = int(ix)
285 if ix < 1:
您必須使用ax.set_yticks或最好創建自己的刻度/刻度標簽ax.set_yticklabels

TA貢獻1884條經驗 獲得超4個贊
您可以在列表理解中對時間進行切片:
import datetime as dt
import matplotlib.pyplot as plt
from matplotlib.dates import DateFormatter
datetimes_str = ['2020-08-03T03:46:18.000Z', '2020-08-01T01:14:31.000Z',
'2020-07-27T22:45:11.000Z', '2020-07-21T20:00:42.000Z',
'2020-07-20T00:37:17.000Z', '2020-07-16T00:40:47.000Z']
datetimes = [dt.datetime.strptime(d, "%Y-%m-%dT%H:%M:%S.%fZ") for d in datetimes_str]
times = sorted([d[11:16] for d in datetimes_str])
fig, ax = plt.subplots()
ax.plot(datetimes, times)
ax.xaxis.set_major_formatter(DateFormatter('%Y/%m/%d'))
fig.autofmt_xdate()
plt.show()
制作:

TA貢獻1797條經驗 獲得超4個贊
發生這種情況是因為 x 軸和 y 軸唯一不同的是表示日期時間的格式,而不是日期時間本身的值,這就是為什么你總是會得到一條對角線。
所以只顯示 00:00,因為 y 軸的值變化太大而無法精確表示小時數。
為了更改此設置,您需要通過刪除日期信息并僅保留時間來更改 y 軸的值。這是一個應該可以解決問題的代碼片段:
import datetime as dt
import matplotlib.pyplot as plt
from matplotlib.dates import DateFormatter, DayLocator, HourLocator
datetimes_str = ['2020-08-03T03:46:18.000Z', '2020-08-01T01:14:31.000Z',
'2020-07-27T22:45:11.000Z', '2020-07-21T20:00:42.000Z',
'2020-07-20T00:37:17.000Z', '2020-07-16T00:40:47.000Z']
datetimes = [dt.datetime.strptime(d, "%Y-%m-%dT%H:%M:%S.%fZ") for d in datetimes_str]
times = [d.replace(day=1, month=1, year=2000) for d in datetimes]
# The above list contains datetimes:
# 2020-08-03 03:46:18
# 2020-08-01 01:14:31
# 2020-07-27 22:45:11
# 2020-07-21 20:00:42
# 2020-07-20 00:37:17
# 2020-07-16 00:40:47
fig, ax = plt.subplots()
ax.yaxis.set_major_formatter(DateFormatter('%H:%M'))
ax.xaxis.set_major_formatter(DateFormatter('%Y/%m/%d'))
ax.plot(datetimes, times)
fig.autofmt_xdate()
plt.show()
添加回答
舉報