【发布时间】:2021-02-18 15:43:00
【问题描述】:
如何在使用功能聚集时手动更改构面的顺序?网格中的数字不是按照我在 myvars 中定义的顺序呈现的。
代码如下:
myvars <- c("1","2","3","4","5"
,"6","7","8","9","10",
"11","12","13","14")
DataVars<- Data[myvars]
DataVars%>%
gather(-1, key = "var", value = "value") %>%
ggplot(aes(x = value, y = 1)) +
facet_wrap(~ var, scales = "free") +
geom_jitter(size = 0.5, shape = 16, aes(colour = var),width = 0.5, height = 0.5) +
geom_smooth(method="lm", size = 1, color = "black", level=0.95)
提前致谢!
【问题讨论】:
-
嗨,谢谢,但我的例子中没有使用收集或 facet_wrap
标签: r ggplot2 tidyr facet-wrap gather