以hh:mm:ss显示Plotly直方图时间

时间:2017-02-23 10:36:55

标签: r plotly

我有一个马拉松完成时间的矢量,我希望使用R中的hh:mm:ss函数将小时和分钟plot_ly格式的x轴/分箱绘制成直方图。

library(plotly)

R<-c("02:17:20", "02:17:26", "02:19:17", "02:19:18", "02:20:50", "02:21:20")

plot_ly(x = as.difftime(R), type = "histogram")

图表上的x轴和弹出窗口以十进制格式显示,即2.325而不是2:19:30我认为这是因为我正在使用difftime类。是否可以更改图表的格式以hh:mm:ss格式显示?

Plot_ly running times histogram

0 个答案:

没有答案