python plot xticks_python – 将索引显示为pandas plot的xticks

我有以下数据框,我试图绘制它,以便它在x轴显示8-19的索引数据.

如果我这样做df.plot()根本没有显示任何标签.如果我执行df.plot(use_index = True),则行为不变.最后我尝试了df.plot(xticks = df.index),但是我得到一个错误AttributeError:’NoneType’对象没有属性’seq’

import pandas as pd

import numpy as np

import matplotlib.pyplot as plt

null = np.nan

df = pd.DataFrame.from_dict({"today sensor 1": {"08": 22.9, "09": 22.7, "10": 22.8, "11": 23.6, "12": 24.1, "13": 24.9,

"14": 25.0, "15": 25.2, "16": 25.7, "17": 26.1, "18": 26.0, "19": 25.8},

"today sensor 2": {"08": 24.5, "09": 24.5, "10": 24.8, "11": 25.3, "12": 26.4, "13": 26.7,

"14": 27.1, "15": 27.6, "16": 28.0, "17": 28.0, "18": 28.2, "19": 28.0},

"yesterday sensor 1": {"08": null, "09": null, "10": null, "11": null, "12": null, "13": null,

"14": null, "15": null, "16": 23.0, "17": 23.6, "18": 23.5, "19": 23.5},

"yesterday sensor 2": {"08": null, "09": null, "10": null, "11": null, "12": null, "13": null,

"14": null, "15": null, "16": 24.8, "17": 24.9, "18": 24.9, "19": 24.8}})

# df.plot(use_index=True) # does not work

df.plot(xticks=df.index)

plt.show()

更奇怪的是,当我这样做时:

ax = df.plot(use_index=True, style=['bs-', 'go-', 'b:', 'g:'])

ax.set_xticklabels(df.index)

plt.show()

xticks会显示,但他们错了.只有9-14的数字才会被嘲笑,而只有其他数字.我期待08-19作为xticks.

任何建议表示赞赏.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值