Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Pop Beta SE Size lo hi name
  2. 2 std1 -1.9590 0.30000000 601 -2.259000 -1.659000 std1
  3. 1 std2 -2.2170 0.17480000 1532 -2.391800 -2.042200 std2
  4. 3 std3 -2.3180 0.17160000 1763 -2.489600 -2.146400 std3
  5. 4 std4 -2.0940 0.18700000 1176 -2.281000 -1.907000 std4
  6. 5 std6 -1.5080 0.19670000 1136 -1.704700 -1.311300 std6
  7. 6 meta -2.0561 0.08695935 6208 -2.143059 -1.969141 meta
  8.  
  9. p <- ggplot()+
  10. geom_pointrange(data=data, aes(x=name, y=Beta, ymin=lo, ymax=hi), shape=c(rep(22,5),23), lwd=0.3,
  11. fill=c(rep("white",5),"white"), color = c(rep("#525252",5),"red"),
  12. fatten = c((data$Size/200)[c(1:5)],5)) +
  13. geom_hline(yintercept = 0, linetype=2)+
  14. coord_flip()+
  15. xlab('') + theme_bw(base_size = 15) +
  16. ylab("") + ggtitle(paste(trait,i,sep=" "))
  17. plot(p)
  18.  
  19. Warning: Ignoring unknown parameters: width
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement