0

I have 4 different charts but unable to show all charts in single window.

tried using layout function, i guess going wrong somewhere

#VPC = ggplot(VP,aes(VP$Final.Source,fill = VP$City)) + geom_bar()
#AVPC = ggplot(AVP,aes(AVP$Final.Source,fill = AVP$City)) + geom_bar()
#BA3C = ggplot(BA3,aes(BA3$Final.Source,fill = BA3$City)) + geom_bar()
#BA2C = ggplot(BA2,aes(BA2$Final.Source,fill = BA2$City)) + geom_bar()

I want to view 4 Ghaphs in single window by 2X2 matrix

1 Answers1

0

I’ve becoming a fan of the package called patchwork which makes it ridiculously easy to combine plots of different types.