在R中的页面上可视化多个ggplots

时间:2018-10-14 12:05:43

标签: r ggplot2

我必须根据下面提到的3个地块做出决定,我希望将所有3个地块一起查看而不是单独查看。可能吗?怎么样?

产生最大利润的市场和细分市场

plot1 <- ggplot(SalesTotal,aes(x=SalesTotal$Market, 
                             y=SalesTotal$TotalProfit, fill=SalesTotal$Segment))
plot1 + geom_bar(stat="identity",position="dodge") + 
      xlab("Market") + ylab("Profit") + ggtitle("Total Profit")

利润率最高的市场和细分市场

plot2<-ggplot(SalesTotal,aes(x=SalesTotal$Market,y=SalesTotal$ProfitPercent,fill=SalesTotal$Segment))
plot2+geom_bar(stat="identity",position="dodge")+xlab("Market")+ylab("Profit %age")+ggtitle("Profit percent")

利润率最高的市场和细分市场

plot3<-ggplot(SalesTotal,aes(x=SalesTotal$Market,y=SalesTotal$CVMonthlyProfitPercent,fill=SalesTotal$Segment))
plot3<-plot3+geom_bar(stat="identity",position="dodge")+xlab("Market")+ylab("Coeff. of variance of monthly profit")
plot3+ggtitle("Coeff. of variance in monthly profit Vs. Market Segment")

当我尝试使用grid.arrange(plot1,plot2,plot3)时,请查看下面的屏幕截图,不确定为什么图1和图2的条形图不出现。

enter image description here

0 个答案:

没有答案