我正在使用多重绘图来绘制在一个页面上共享图例的2个饼图。
plot1<-ggplot(df,aes(x=factor(1),y=values,fill=names))
+geom_bar(stat="identity",width="1")
+coord_polar(theta="y")
+theme(legend.position="none")
plot1<-ggplot(df,aes(x=factor(1),y=values2,fill=names))
+geom_bar(stat="identity",width="1")
+coord_polar(theta="y")
multiplot(plot1,plot2,cols=2)
当我这样做时,没有图例的情节比带有图例的情节大得多。
1)有没有办法通过multiplot()直接控制它? 2)如何控制原始图的宽度和长度?
谢谢大家!