Guest User

Untitled

a guest
Feb 16th, 2011
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. library("ggplot2")
  2. fcolor_two <- c("#0059A3","#B01B12")
  3.  
  4. data <- read.csv("features_kept_data.csv")
  5. p = ggplot(data,aes(fill=z,x=x,y=y,group=group)) + geom_bar(stat="identity") + xlab("Method") + facet_grid(. ~ group) + scale_y_continuous(breaks=c(0,20,40,60,80,100))
  6.  
  7. p = p + opts(legend.position = "none") + opts(plot.margin = unit(c(0,0.05,-0.2,0),"cm"))
  8. print(p)
Advertisement
Add Comment
Please, Sign In to add comment