标签: r ggplot2
我有这样的财务数据。如何按AAA,AA +,AA,AA- ......的顺序对x轴重新排序。
library(ggplot2) ggplot(df2, aes( x= as.factor(splticrm), y = z_score)) + geom_boxplot(alpha=0.6, size = 1) + xlab("Rating")