Guest User

Untitled

a guest
Jan 17th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. year1984 <- c(1,6,16,23)
  2. year1985 <- c(27,39,31,30)
  3. year1986 <- c(43,51,63,70)
  4. year1987 <- c(88,97,91,104)
  5. year1988 <- c(110,113,149,159)
  6.  
  7. rbind(year1984,year1985,year1986,year1987,year1988)
  8.  
  9. x<-c(1:20)
  10. y<-c(1,6,16,23,
  11. 27,39,31,30,
  12. 43,51,63,70,
  13. 88,97,91,104,
  14. 110,113,149,159)
  15.  
  16. m1 <- glm (y~x,family=poisson)
  17. m1
Add Comment
Please, Sign In to add comment