Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有以下列的熊猫数据框:
现在我想用 mpf.plot 绘制一个图表。但我收到以下错误:
如何避免上述 TypeError 消息?我确实使用以下命令设置了 df 索引:
dfnew_plot = dfnew_plot.set_index('Date')
您的索引不是正确的 dtype。它需要使用以下方法进行转换:
dfnew_plot.index = pd.to_datetime(dfnew_plot.index)