作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想合并两个 ggplots
与 grid.arrange
只有一个一般的传说。我设法用一个小技巧把这两个传说结合起来,但是由于我从第一个情节中删除了这个传说,这个在 grid.arrange
之后更广泛。 , 当然。如何使两个绘图区域的大小相同?而且我希望有一个共同的 x Axis 标签,位于两个图的下方。用 grid.arrange
可以吗? ?我知道,之前已经回答过类似的问题,但我仍然是 R
的新手并且解决方案太复杂,或者我无法将它们与我的数据相匹配。
所以这是我的两个数据集:
testxy
SN strain est low up
1 A xy 11.6751 11.1480 12.2021
2 B xy 11.4211 11.1108 11.7314
3 C xy 2.6603 2.4291 2.8915
4 D xy 4.5503 4.2972 4.8034
testyz
SN strain est low up
5 A yz 22.1761 21.5136 22.8387
6 C yz 21.4829 21.0251 21.9408
7 B yz 19.3294 18.8950 19.7639
8 D yz 19.9990 19.3934 20.6047
p1<-ggplot(data=testxy, aes(colour=strain, x=SN, y=est))+
theme(panel.background = element_rect(fill = 'white', colour = 'black'))+
theme(legend.position="none")+
theme(axis.title.x = element_text(size = rel(1.5), vjust=-0.1),
axis.title.y = element_text(size = rel(1.5), vjust=1), axis.text.y = element_text(size = rel(1.4)), axis.text.x = element_text(hjust = 1, size = rel(1.5)),plot.title = element_text(size = rel(2.5), lineheight=1, face="bold"))+
theme(plot.margin=unit(c(5,5,5,5),"mm"))+
labs(x="treatment", y="integral", title="xy")+
scale_colour_manual(name="strain", values=c(xy="blue"))+
theme(strip.text.x = element_text(size=12, face="bold"), strip.background = element_rect(colour="black", fill="white"))+
geom_point(aes(color="xy"), size=5, alpha=0.1, shape=16)+
geom_errorbar(aes(ymin=low, ymax=up, width=0.2), colour="deepskyblue", size=0.8)+
scale_y_continuous(breaks=seq(5,20,5), limits=c(2,23.5))
p2<-ggplot(data=testyz, aes(colour=strain, x=SN, y=est))+
theme(panel.background = element_rect(fill = 'white', colour = 'black'))+
theme(legend.position="right")+
theme(axis.title.x = element_text(size = rel(1.5), vjust=-0.1), axis.ticks.y = element_blank(), axis.text.y = element_blank(), axis.text.x = element_text(hjust = 1, size = rel(1.5)), plot.title = element_text(size = rel(2.5), lineheight=1, face="bold"))+
theme(plot.margin=unit(c(5,5,5,5),"mm"))+
labs(x="treatment", y=NULL, title="yz")+
scale_colour_manual(name="strain", values=c(yz="green", xy="blue"))+
theme(strip.text.x = element_text(size=12, face="bold"), strip.background = element_rect(colour="black", fill="white"))+
geom_point(aes(color="yz"), size=5, alpha=0.1, shape=16)+
geom_point(aes(color="xy"), size=0)+
geom_errorbar(aes(ymin=low, ymax=up, width=0.2), colour="green", size=0.8)+
scale_y_continuous(breaks=seq(5,20,5), limits=c(2,23.5))+
scale_x_discrete(limits=c("A", "C", "B", "D"))
grid.arrange(p1,p2, ncol=2)
levels
的顺序在 x Axis 上。所以,我认为刻面对我不起作用。
最佳答案
您应该使用分面:
testxy <- read.table(text = " SN strain est low up
1 A xy 11.6751 11.1480 12.2021
2 B xy 11.4211 11.1108 11.7314
3 C xy 2.6603 2.4291 2.8915
4 D xy 4.5503 4.2972 4.8034", header = TRUE)
testyz <- read.table(text = " SN strain est low up
5 A yz 22.1761 21.5136 22.8387
6 C yz 21.4829 21.0251 21.9408
7 B yz 19.3294 18.8950 19.7639
8 D yz 19.9990 19.3934 20.6047", header = TRUE)
test <- rbind(cbind(testxy, fac = "xy"),
cbind(testyz, fac = "yz"))
test$SN1 <- interaction(test$SN, test$fac)
test$SN1 <- ordered(test$SN1, levels = test$SN1)
ggplot(data=test, aes(colour=strain, x=SN1, y=est)) +
geom_point() +
facet_wrap(~ fac, scales = "free_x") +
scale_x_discrete(labels = setNames(as.character(test$SN), as.character(test$SN1)))
关于r - 将绘图与 grid.arrange 结合并调整绘图大小和 Axis 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31454457/
所以我在 JPanel 中全面移动 Snake 时遇到了一些问题。现在这不是 JPanel 的问题或错误,我只是无法按应有的方式移动 Snake。我知道问题出在哪里,但我就是想不出一种方法让它正常工作
我是一名优秀的程序员,十分优秀!