Rdo_args2txt_list | R Documentation |
Collect the descriptions of the arguments of a function in a named list with one element per argument.
Rdo_args2txt_list(x, arg, ...)
x |
help object, may be any of the types that
|
arg |
A character vector naming the arguments to describe. If |
... |
additional arguments to pass to |
If several arguments are described in a single documentation entry, then the whole text of the entry is given for each of the arguments.
A named list with one entry (a string) for each of the requested arguments.
Georgi N. Boshnakov
Rdo_args2txt
# each arg always gets an individual entry in the list;
# compare:
Rdo_args2txt_list("seq", c("from", "to", "by"))
# to:
cat(Rdo_args2txt("seq", c("from", "to", "by")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.