作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含以下系列的 pandas.DataFrame df
:
Time
2182447 0 days 05:44:00
2182447 0 days 05:49:00
3129563 0 days 22:09:00
13341029 0 days 16:49:00
13341029 0 days 16:58:00
25622668 0 days 08:24:00
25622668 0 days 08:28:00
30077018 24 days 15:01:00
30077018 24 days 15:09:00
20131954 0 days 06:18:00
我想绘制时间增量的直方图。然而:
hist(df)
df.Time.hist()
# both functions give the same error
>>> TypeError: Cannot cast ufunc less input from dtype('float64') to dtype('<m8[ns]') with casting rule 'same_kind'
最佳答案
以下作品:
hist(df.Time.astype('timedelta64[h]'))
您可以在 astype 参数中使用不同的单位。在这里,我使用“h”小时。
关于pandas - matplotlib, Pandas ,如何生成时间增量的直方图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48813574/
我是一名优秀的程序员,十分优秀!