Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用gapminder数据集制作带有plotly库的交互式条形图。我想使用forcats库重新排序大陆变量中的级别,但是当我将它放在管道之后时它无法识别这个变量。这是我正在使用的脚本:
gapminder
plotly
forcats
gapminder %>% filter(year==2002) %>% mutate(continent=fct_reorder(continent, pop, .desc=T))
我想知道为什么变量“大陆”不通过管道。谢谢。
试试这个为了保存你的管道操作gapminder:
gapminder %>% filter(year==2002) %>% mutate(continent=fct_reorder(continent, pop, .desc=T)) -> gapminder