4  Getting help

Use the and the arrow keys to navigate over the slides below.

4.1 Exercise - find help for a function

Which function will give you the help page for the lm function?

find(lm)

?lm

help(lm)

Both ?lm and help(lm) are correct

4.2 Exercise - search for a function

Try to find a function to estimate generalized linear models.

Recall that R has a function that searches for the help page of a function.

help.search("generalized linear model")