Guest User

Untitled

a guest
Jan 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ggplot.3plus<-ggplot(summary.3plus, aes(x=sp1, y=fract.mean, fill=ForestAge)) +
  2. geom_bar(position=position_dodge())+ coord_cartesian(ylim = c(1, 1.175))+
  3. geom_errorbar(aes(ymin=fract.mean-se, ymax=fract.mean+se),
  4. width=.2, # Width of the error bars
  5. position=position_dodge(.9))
  6.  
  7. ggplot.3plus<- ggplot.3plus + theme(axis.title.x = element_text(colour = "red"))
  8.  
  9. ggplot.3plus + theme(axis.text.x=element_text(colour="red"))
Add Comment
Please, Sign In to add comment