如何使用R或ggplot2绘制此图?

时间:2017-06-28 08:49:45

标签: r ggplot2 graph

我有一些这样的数据:

6/22/2013 16:39
6/23/2013 16:42
6/23/2013 17:41
6/24/2013 17:49
6/24/2013 14:06
6/24/2013 14:16

这些只是在不同日子的某些时候。我想要这样的东西: enter image description here

我该如何实现?感谢。

1 个答案:

答案 0 :(得分:3)

library(ggplot2)
ggplot(data,aes(x=date,y=time))+geom_point()