使用ggplot
和faced_grid
,我在可视化type1变量的整个名称时遇到了问题。名称太长。如何添加图例以避免此问题?
DF <- data.frame("value" = runif(50, 0, 1),
"type1" = c(rep("AAAAAAAAAAAAAAAAAAAAAA", 25),
rep("BBBBBBBBBBBBBBBBB", 25)),
"type2" = rep(c("c", "d"), 25),
"number" = rep(2:6, 10))
ggplot(DF, aes(y = value, x = type1)) +
geom_boxplot(alpha = .3) +
ggtitle("TITLE") +
facet_grid(type2 ~ number)
这是结果: