In R
you can search the documentation by typing a question mark ?
or a double question mark ??
. How do you search the manual for strings in the Julia REPL?
>?first
No documentation for ‘first’ in specified packages and libraries:
you could try ‘??first’
>??first
In the R
console a browser window opens up:
In RStudio
the page is opened within the IDE.
The help() function and ? help operator in R provide access to the documentation pages for R functions, data sets, and other objects, both for packages in the standard R distribution and for contributed packages.
The help() function and ? operator are useful only if you already know the name of the function that you wish to use. Other ways to search include apropos
and ??
The apropos() function searches for objects, including functions, directly accessible in the current R session that have names that include a specified character string.
The ?? operator is a synonym for help.search(). The help.search() function scans the documentation for packages installed in your library. The argument to help.search() is a character string or regular expression.
P.S. I intend to answer my own question.