Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To open up the help page within R/RStudio:

Code Block
xml
xml
> help(insert_function_name)
# an example for ds.histogram
> help(ds.histogram)

an equivalent command is to use the help operator ?:

Code Block
xml
xml
> ?(ds.histogram)

Anchor
webpage
webpage

...

To open up the function help page in a webpage:

Code Block
xml
xml
> options(help_type="html")
> help(ds.histogram)
# alternatively use
> ?(ds.histogram)

...