rhelp {remoter} | R Documentation |
Provide the primary interface to the help systems as utils::help()
rhelp(topic, package = NULL, lib.loc = NULL, verbose = getOption("verbose"), try.all.packages = getOption("help.try.all.packages")) help(topic, package = NULL, lib.loc = NULL, verbose = getOption("verbose"), try.all.packages = getOption("help.try.all.packages")) "?"(e1, e2)
topic, e1, e2 |
A topic as in |
package |
A package as in |
lib.loc |
A lib location as in |
verbose |
if verbose on/off as in |
try.all.packages |
if try all packages as in |
Remote R Help System
## Not run: ### Prompts are listed to clarify when something is eval'd locally vs ### remotely > # suppressMessages(library(remoter, quietly = TRUE)) > # client() > remoter::client("192.168.56.101") remoter> rhelp("plot") remoter> rhelp(package = "remoter") remoter> rhelp("plot", package = "remoter") remoter> rhelp("dev.off") remoter> rhelp("dev.off", package = "remoter") remoter> rhelp("dev.off", package = "grDevices") remoter> help("par") remoter> ?`+` remoter> ?`?` remoter> ?"??" remoter> package?base remoter> `?`(package, remoter) remoter> q() > ## End(Not run)