📌  相关文章
📜  ggboxplot ggpubr 更改顺序 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:13.039000             🧑  作者: Mango

代码示例1
# Decide the order of groups in the argument levels
iris$Species <- factor(iris$Species, levels = c("virginica", "versicolor", "setosa"))
ggboxplot(iris, x = "Species", y = "Sepal.Length")