且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

ggplot2的小提琴图未按x轴数据集中的顺序排列

更新时间:2022-12-15 11:05:59

默认情况下,ggplot2按字母顺序绘制字符向量.要将指定的顺序放置到绘图中,只需使用dplyr并将列创建为 factor()并指定所需的级别.然后ggplot2应该根据需要绘制它.

By default, ggplot2 plots character vectors in alphabetical order. To place a specified order to your plot, simply use dplyr and create the column as a factor() and specify the levels you desire. Then ggplot2 should plot it as you want.

编辑#1 一种方法是与ggplot2命令字符串分开修改 df1 数据帧.您可以按照以下方式进行操作

Edit #1 One way is to modify the df1 data frame separately from your string of ggplot2 commands. You can do this as

df1 <- df1 %>%
  mutate( Model=factor(Model,levels=c("Observed", "SVM", "Grid_SVM", "MARS", "Grid_Mars", "RF", "Grid_RF")) )

然后按照上面的说明调用ggplot2命令字符串.

And then call your string of ggplot2 commands as you have posted above.

编辑#2 (来自下面的评论)

如果您想通过管道传输所有内容并一次完成所有操作,请尝试

If you want to pipe everything through and do everything in one shot, try

df1 %>%
  mutate( Model=factor(Model,levels=c("Observed", "SVM", "Grid_SVM", "MARS", "Grid_Mars", "RF", "Grid_RF")) ) %>%
  ggplot( aes(x = Model, y = Pb), cex.lab = 18, cex.axis=18) +
  geom_violin(trim=FALSE, fill = "palegreen") +
  geom_boxplot(width = .12, fill = "orange", outlier.color = "orange", outlier.size = 2) + 
  labs(title = "Pb Adsorption distribution by Models over testing phase") + xlab("Models") + ylab("Pb Adsorption distribution")+ theme_classic() +
  theme(
  plot.title = element_text(size = 12, colour = "black", face = "bold"), #for Main Title
  axis.title.x = element_text(size = 12, colour = "black", face = "bold"), #for axix title
  axis.title.y = element_text(size = 12, colour = "black", face = "bold"),
  axis.text.x = element_text(face="bold", color="darkblue", size=12, angle=0), #for axis tick
  axis.text.y = element_text(face="bold", color="black", size=12, angle=0))

最初的建议是覆盖数据.然后在新链中生成图.

The original suggestion was to overwrite the data. Then generate the plot in a new chain.

df1 <- df1 %>%
  mutate( Model=factor(Model,levels=c("Observed", "SVM", "Grid_SVM", "MARS", "Grid_Mars", "RF", "Grid_RF")) )

ggplot( df1, aes(x = Model, y = Pb), cex.lab = 18, cex.axis=18) +
  geom_violin(trim=FALSE, fill = "palegreen") +
  geom_boxplot(width = .12, fill = "orange", outlier.color = "orange", outlier.size = 2) + 
  labs(title = "Pb Adsorption distribution by Models over testing phase") + xlab("Models") + ylab("Pb Adsorption distribution")+ theme_classic() +
  theme(
  plot.title = element_text(size = 12, colour = "black", face = "bold"), #for Main Title
  axis.title.x = element_text(size = 12, colour = "black", face = "bold"), #for axix title
  axis.title.y = element_text(size = 12, colour = "black", face = "bold"),
  axis.text.x = element_text(face="bold", color="darkblue", size=12, angle=0), #for axis tick
  axis.text.y = element_text(face="bold", color="black", size=12, angle=0))

以上任何一种都可以.