我正在使用下面的附加数据来生成箱线图。数据链接 https://www.dropbox.com/s/dt1nxnkhq90nea4/GTAP_Sims.csv
到目前为止,我有我正在使用的这段代码:
# Distribution of EV for all regions under the BASE scenario
evBASE.f <- subset(ccwelfrsts, tradlib =="BASE")
p <- ggplot(data = evBASE.f, aes(factor(region), ev))
p + geom_boxplot() +
theme(axis.text.x = element_text(colour = 'black', angle = 90, size = 16)) +
theme(axis.text.y = element_text(colour = 'black', size = 16))
它再现了一个看起来的情节: Plot file:///C:/Users/iouraich/Documents/ggplot_Results.htm
我在这里寻找的是让图中的 x 轴与 csv 文件中标题“区域”的顺序相匹配。
ggplot 中是否有任何选项可以控制它?
非常感谢