Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. library(ggplot2)
  2.  
  3. #Sorry for the wget, I can't seem to make load() read the url directly
  4. system("wget https://copy.com/LrEznd8QCmzVBNyz/df_pr_PDF_alps_044.Rdata?download=1")
  5. load("df_pr_PDF_alps_044.Rdata?download=1") #This loads df
  6. colnames(df) #Take a look at the columns
  7.  
  8. ggplot(data=df[which(df$PDF > 0),], aes(x=x, y=PDF)) +
  9. geom_point(aes(shape=domain, colour=nativeresolution, fill=model), alpha=0.7, size=2)+
  10. scale_shape_manual(values=c(1,2,5))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement