如何可视化带有坐标的时间序列?

时间:2019-04-10 10:43:15

标签: r data-visualization data-manipulation

我正在尝试绘制此数据。我不确定要使用哪个软件包。

excel中的数据看起来像这样

Time    [4710.19    4710.21 4710.23 4710.24 4710.26 4710.28 4710.29]
X   [176.5  176.5   176.5   177 179 180.5   182.5   185.5]
Y   [222    227.5   237 247.5   263 278 296 314]

我想获得沿时间戳的X和Y绘图的动画。

1 个答案:

答案 0 :(得分:0)

我尝试使用gganimate包来可视化数据。

library(gganimate)
library(ggplot2)
Time = c(4710.19, 4710.21, 4710.23, 4710.24,  4710.26,  4710.28,  4710.29, 4710.30)
X = c(176.5, 176.5, 176.5, 177,  179,  180.5, 182.5, 185.5)
Y = c(222, 227.5, 237, 247.5, 263, 278, 296, 314)
dat = data.frame(Time, X, Y)

ggplot(dat, aes(X, Y)) +
  geom_point()+
  theme_minimal() +
  transition_states(Time) + 
  ease_aes('cubic-in-out')

这对我有用。请试试。您需要安装ggplot2gganimate软件包才能生成此可视化。希望对您有所帮助。