首页 > 解决方案 > 过渡期间的 gganimate 舍入值

问题描述

我想用 gganimate 包创建一个动画条形图。在每个条的顶部,我想将条的值四舍五入为零位。

考虑以下示例:

# Example data
df <- data.frame(ordering = c(rep(1:3, 2), 3:1, rep(1:3, 2)),
                 year = factor(sort(rep(2001:2005, 3))),
                 value = round(runif(15, 0, 100)),
                 group = rep(letters[1:3], 5))

# Create animated ggplot
ggp <- ggplot(df, aes(x = ordering, y = value)) +
  geom_bar(stat = "identity", aes(fill = group)) +
  transition_states(year, transition_length = 2, state_length = 0) +
  geom_text(y = df$value, label = as.integer(round(df$value)))
ggp

在此处输入图像描述

不幸的是,我没有设法正确地舍入这些值。有没有办法在过渡期间四舍五入?

标签: rggplot2bar-chartroundinggganimate

解决方案


由于 df$value 已经通过 round() 舍入为零小数,因此您可以在设置标签时使用 as.character() 。

> df$value
[1] 29 81 92 50 43 73 40 41 69 15 11 66  4 69 78
> as.character(df$value)
[1] "29" "81" "92" "50" "43" "73" "40" "41" "69" "15" "11" "66" "4"  "69" "78"

结果:

ggp <- ggplot(df, aes(x = ordering, y = value)) +
  geom_bar(stat = "identity", aes(fill = group)) +
  transition_states(year, transition_length = 2, state_length = 0) +
  geom_text(label = as.character(df$value))

在此处输入图像描述


推荐阅读