Difference of fct_reorder and reorder

↘锁芯ラ 提交于 2020-01-15 10:08:19

问题


This is an exmaple of fct_reorder

boxplot(Sepal.Width ~ fct_reorder(Species, Sepal.Width, .desc = TRUE), data = iris)

This code is identical with boxplot(Sepal.Width ~ reorder(Species, -Sepal.Width), data = iris)

What is the better point fct_reorder() than reorder()?

来源:https://stackoverflow.com/questions/51378506/difference-of-fct-reorder-and-reorder

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!