Guest User

Untitled

a guest
Jun 24th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. fit <- lm(Sepal.Length ~ Species * Sepal.Width, data=iris)
  2. summary(fit) # The two last lines
  3.  
  4. fit <- lm(Sepal.Length ~ Species / Sepal.Width, data=iris)
  5. summary(fit) # The three last lines
Add Comment
Please, Sign In to add comment