Advertisement
Guest User

Untitled

a guest
Nov 11th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. plot1 <- ggplot(TF1, aes(x= ru11ind, fill = ru11ind)) + geom_bar() + theme( axis.text.x=element_blank()) +ggtitle(("TF1"))
  2. plot2 <- ggplot(TF2, aes(x= ru11ind, fill = ru11ind)) + geom_bar() + theme( axis.text.x=element_blank()) +ggtitle(("TF2"))
  3. plot3 <- ggplot(TF3, aes(x= ru11ind, fill = ru11ind)) + geom_bar() + theme( axis.text.x=element_blank()) +ggtitle(("TF3"))
  4. plot4 <- ggplot(TF4, aes(x= ru11ind, fill = ru11ind)) + geom_bar() + theme( axis.text.x=element_blank()) +ggtitle(("TF4"))
  5. grid.arrange(plot1, plot2, ncol=2)
  6. grid.arrange(plot3, plot4, ncol=2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement