| Web
Search |
R
help
functions |
RSiteSearch by
Jonathan Baron
|
apropos('regexp')
# Search for loaded symbols (functions, etc.)
|
| Rseek.org by Sasha Goodman |
help(functionname)
#
Tells
how
to
use
the function
|
|
help.search('regexp',
agrep=F)
#
Search
the
help
system database fields
|
| For
Hard
Questions |
help.search('pattern')
#
Search
help
db
using Levenshtein edit distance
|
| Official R Manuals |
library()
#
Shows
loaded
packages |
| Frequently Asked Questions |
library(packagename)
#
Loads
the
package
|
| CRAN Task Views |
vignette('packagename')
#
Overview
of
package
|
| Other Contributed R Documentation
|
ls(package:packagename)
#
Functions
in
package
|
|
ls()
#
Shows
currently
defined
local
functions
& variables
|
|
search()
#
shows
things
on
the
search
path
|
|
args(functionname)
# Shows the names of the function's arguments
|