我有一个奇怪的问题,我正在使用par()制作一个多面板条形图,我注意到条形图的尺寸不同,我想知道是否可以使条形图的宽度(尺寸)相同每个小组?这将创建不同大小的面板,但这没关系。任何评论都会有所帮助。
我有这个通用的例子:
# create data
a<-c(1:100)
b<-c(1:200)
c<-c(1:300)
d<-c(1:400)
e<-c(1:500)
#make dataframes for barplots
test<-as.data.frame(cbind(a,b))
test1<-as.data.frame(cbind(a,b,c))
test2<-as.data.frame(cbind(a,b,c,d))
test3<-as.data.frame(cbind(a,b,c,d,e))
#gets means for each column
a1<-colMeans(test)
a2<-colMeans(test1)
a3<-colMeans(test2)
a4<-colMeans(test3)
#lets plot
pdf(file= "/Users/Highf_000/Desktop/prac.pdf");
par(mfrow = c(2, 4), # 2 rows x 4 columns layout
oma = c(2, 2, 0, 0), # two rows of text at the outer left and bottom margin
mar = c(5, 5, 2, 1)+0.1, # space for one row of text at ticks and to separate plots
mgp = c(2, 1, 0), # axis label at 2 rows distance, tick labels at 1 row
xpd = NA)
barplot(mean(a))
barplot(a1)
barplot(a2)
barplot(a3)
barplot(a4)
dev.off()
我们如何克服在多个情节布局中消失的情节?我们如何将标题固定在条形图上而不是情节?
答案 0 :(得分:0)
简化您的示例
a1 <- c(1,2)
a2 <- c(1,2,3)
a3 <- c(1,2,3,4)
barplot(a1) ## produces uneven bars
barplot(a2) ## produces uneven bars
barplot(a3) ## produces uneven bars
正如here所述,您至少可以执行以下操作之一:
选项1
df <- data.frame(bar1 = c(1, 2, 0,0),
bar2 = c(1, 2, 3, 0),
bar3 = c(1, 2, 3, 4))
barplot(as.matrix(df), beside = TRUE)
选项2
bar1 <- barplot(a1, xlim = c(0, 1), width = 0.1)
bar2 <- barplot(a2, xlim=c(0,1), width = 0.1)
bar3 <- barplot(a3, xlim=c(0,1), width = 0.1)
还有ggplot选项,你不喜欢barplot。