如何在Matplotlib中绘制推文时交换x和y轴

时间:2019-05-30 13:12:38

标签: python matplotlib tweets

我正在尝试根据matplotlib中的日期来绘制推文的出现。

我已经成功地将时间戳转换为大熊猫可以识别的格式,但是我无法在x轴上显示时间。

df_explo['timestamp'] = pd.to_datetime(df_explo['timestamp'])

fig, ax = plt.subplots(figsize=(10, 8))

plt.plot('timestamp', data=df_explo);

它输出以下图像: image

如何交换x和y轴?

提前谢谢!

0 个答案:

没有答案