Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ---
  2. title: "UROP"
  3. author: "Hunter Levine"
  4. date: "3/1/2019"
  5. output: html_document
  6. ---
  7.  
  8. canopy cover
  9. floral neighborhood:
  10. others decrease it
  11.  
  12. total abundance / coffee / species richess / non coffee / tree / herb
  13.  
  14. height of coffee plant
  15.  
  16.  
  17. ```{r}
  18. library(ggplot2)
  19. library(lme4)
  20.  
  21. pollen <- carpels.pollen
  22. canopy <- stigma.canopy
  23. transects <- stigma.transects
  24.  
  25. canopymodel <- glmer(coffee.pollen.final ~ scale(cover) + (1 | plant/carpel), data = canset, family = poisson)
  26.  
  27. summary(canopymodel)
  28. plot()
  29.  
  30.  
  31. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement