rhelp: rhelp

Description Usage Arguments Details Examples

View source: R/wcc_rhelp.r

Description

Provide the primary interface to the help systems as utils::help()

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
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)

Arguments

topic, e1, e2

A topic as in utils::help()

package

A package as in utils::help()

lib.loc

A lib location as in utils::help()

verbose

if verbose on/off as in utils::help()

try.all.packages

if try all packages as in utils::help()

Details

Remote R Help System

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
## 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)

wrathematics/remoter documentation built on Nov. 21, 2021, 2:30 a.m.