我想在gganimate标题中使用自定义列,但无法在文档中的任何地方阅读该怎么做。
使用他们页面中的代码的示例:
library(gapminder)
ggplot(gapminder, aes(gdpPercap, lifeExp, size = pop, colour = country)) +
geom_point(alpha = 0.7, show.legend = FALSE) +
scale_colour_manual(values = country_colors) +
scale_size(range = c(2, 12)) +
scale_x_log10() +
facet_wrap(~continent) +
# Here comes the gganimate specific bits
labs(title = 'Year: {frame_time}', x = 'GDP per capita', y = 'life expectancy') +
transition_time(year) +
ease_aes('linear')
我想要标题中的是“人均GDP”(我知道这是一个愚蠢的例子),而不是年份。 我尝试用以下方式替换第8行:
labs(title = 'Gdp: {gdpPercap}', x = 'GDP per capita', y = 'life expectancy') +
到目前为止没有成功