...
You can access the help page of a function in a number of ways
- To open up the help page within R/RStudio using the help command :
Code Block | ||||
---|---|---|---|---|
| ||||
help(insert_function_name) # an example for print() help(print) |
- an equivalent command is to use the help operator
?
:
Code Block | ||||
---|---|---|---|---|
| ||||
?(print) |
- both commands will open up a web page in windows (or the manual page inside the terminal in Linux)