如何在 R 中使箱线图中的标签垂直
How to make labels in boxplot vertical in R
我在 x 轴上的标签太多了。我怎样才能垂直投影它们?
我找不到正确的论据...
boxplot(df$y$x, data=df, drop = TRUE, main = "Boxplot y vs x", ylab="y", xlab="x")
希望有人能帮助我。
提前致谢。
使用ggplot2
你可以做这样的事情
library(ggplot2)
ggplot(df) +
geom_boxplot(aes(x = x,
y = y))+
ggtitle("Boxplot y vs x") +
theme(axis.text.x = element_text(angle = 90))
我在 x 轴上的标签太多了。我怎样才能垂直投影它们? 我找不到正确的论据...
boxplot(df$y$x, data=df, drop = TRUE, main = "Boxplot y vs x", ylab="y", xlab="x")
希望有人能帮助我。 提前致谢。
使用ggplot2
你可以做这样的事情
library(ggplot2)
ggplot(df) +
geom_boxplot(aes(x = x,
y = y))+
ggtitle("Boxplot y vs x") +
theme(axis.text.x = element_text(angle = 90))