gganimate col图表中的值与原始数据值不同

时间:2018-08-10 18:14:46

标签: r gganimate

我从动画图表开始,并使用gganimate软件包。我发现,随着时间的推移生成col图表动画时,变量的值与原始值会发生变化。让我给你看一个例子:

Data <- as.data.frame(cbind(c(1,1,1,2,2,2,3,3,3),
                            c("A","B","C","A","B","C","A","B","C"),
                            c(20,10,15,20,20,20,30,25,35)))
colnames(Data) <- c("Time","Object","Value")
Data$Time <- as.integer(Data$Time)
Data$Value <- as.numeric(Data$Value)
Data$Object <- as.character(Data$Object)
p <- ggplot(Data,aes(Object,Value)) +
  stat_identity() +
  geom_col() +
  coord_cartesian(ylim = c(0,40)) +
  transition_time(Time)
p  

该图表获得了以下类似信息:

enter image description here

在Y轴上获得的值在1到6之间。似乎原始值10对应于Y轴上的值1。 15是2,20是3,依此类推...

有没有办法在图表中保留原始值?

预先感谢

1 个答案:

答案 0 :(得分:1)

1

  1. 将因子变量强制转换为数字时,您的数据已更改。 (请参见data部分如何有效地定义data.frame)
  2. 您错过了position = "identity"来让条形图停留在同一位置。我添加了一个fill = Time进行说明。

代码

p <- ggplot(Data, aes(Object, Value, fill = Time)) +
     geom_col(position = "identity") +
     coord_cartesian(ylim = c(0, 40)) +
     transition_time(Time)
p  

数据

Data <- data.frame(Time = c(1, 1, 1, 2, 2, 2, 3, 3, 3),
                   Object = c("A", "B", "C", "A", "B", "C", "A", "B", "C"),
                   Value = c(20, 10, 15, 20, 20, 20, 30, 25, 35))