我正在关注有关gganimate的基本教程:
p <- ggplot(iris, aes(x = Petal.Width, y = Petal.Length)) +
geom_point()
当我尝试下面的代码片段时:
p + transition_states(Species,
transition_length = 2,
state_length = 1)
我收到以下错误:
Error in l$setup_layer(d, plot) : attempt to apply non-function
我猜测这与软件包版本有关,但是有人可以帮忙吗?
谢谢