我正在尝试获取我的数据框的构面网格。
目的是总结每个个体(n=24)的每个进化枝(A、B、C、D、E、F)的组成(百分比)。
每个进化枝的总和也不是 100%,但最终非常接近。没有一个人得到 Clade B 或 F。
这是我的 R 脚本:
library(scales)
library(reshape)
library(ggplot2)
#Add an id variable for the filled regions
X_clade$ind <- factor(X_clade$ind)
X_clade$days <- factor(X_clade$days)
X_clade$temperature <- factor(X_clade$temperature)
X_clade$D <- NULL
Clade <- c(X_clade$A, X_clade$B, X_clade$C, X_clade$E, X_clade$F)
Abundance= 100*cumsum(Clade)/sum(Clade)
str(X_clade)
Abundance
hist(Clade$A)
#subset
file.29<-X_clade[(X_clade$days == 29),]
file.65<-X_clade[(X_clade$days == 65),]
file.53<-X_clade[(X_clade$days == 53),]
#install.packages("wesanderson")
library(wesanderson)
plot_bar(X_clade)
file.29$B <- NULL
file.29$F <- NULL
seq(0.1,1,by=0.1)
p1<-ggplot(file.29,aes(x = ind, y=Abundance,fill = Clade)) +
geom_bar(position = "fill",stat = "identity") +
scale_y_continuous(labels = percent_format()) +
theme(panel.background = element_blank(),
panel.border=element_rect(fill=NA),
panel.grid.minor = element_blank(),
axis.text.x=element_text(colour="black",size=11),
axis.text.y=element_text(colour="black",size=11),
axis.title =element_blank()) + guides(fill=FALSE) +
facet_grid(days~temperature,scales="free_x")
p1
p_1M=ggplot(file.29,aes(x = ind, y=Abundance,fill = Clade))
p_1M
p2<-ggplot(file.53,aes(x = ind, y=Abundance,fill = Clade)) +
geom_bar(position = "fill",stat = "identity") +
scale_y_continuous(labels = percent_format()) +
theme(panel.background = element_blank(),
panel.border=element_rect(fill=NA),
panel.grid.minor = element_blank(),
strip.text.x = element_blank(),
axis.text.x=element_text(colour="black",size=11),
axis.text.y=element_text(colour="black",size=11),
axis.title =element_blank()) +guides(fill=FALSE) +
facet_grid(days~temperature,scales="free_x")
p2
p3<-ggplot(file.65,aes(x = ind, y=Abundance,fill = Clade)) +
geom_bar(position = "fill",stat = "identity") +
scale_y_continuous(labels = percent_format()) +
theme(panel.background = element_blank(),
panel.border=element_rect(fill=NA),
panel.grid.minor = element_blank(),
strip.text.x = element_blank(),
axis.text.x=element_text(colour="black",size=11),
axis.text.y=element_text(colour="black",size=11),
axis.title =element_blank()) + guides(fill=FALSE) +
facet_grid(days~temperature,scales="free_x")
p3
library(gridExtra)
grid.arrange(p1, p2, p3, nrow=3)
但是对于每个图(p1,p2,p3),我得到相同的错误消息:错误:美学必须是长度 1 或与数据相同(8):x,y,填充。
关于如何解决这个问题的每一个见解都会很可爱!我确信我离它不远了。但是,一路卡住了寿!
尽我所能
家