use_data_doc | R Documentation |
Generates a shell of documentation for a data set or other object in roxygen format.
This function was created by editing promptData
to replace
the old style .Rd
formatting with code suitable for processing with document
.
use_data_doc(object, filename = NULL, name = NULL, labels = NULL)
object |
an R object to be documented as a data set |
filename |
usually, a |
name |
a character string specifying the name of the object. Defaults to the name of |
labels |
a character vector of variable labels or strings describing each column in the data set. |
Unless filename
is NA
, a documentation shell for object
is written in roxygen format to the file specified
by filename
, and a message about this is given.
If filename
is NA
, a list-style representation of the documentation shell is created
and returned. Writing the shell to a file amounts to cat(unlist(x), file = filename, sep = "\n")
,
where x
is the list-style representation.
Currently, only data frames are handled explicitly by the code.
If filename
is NA
, a list-style representation of the documentation shell.
Otherwise, the name of the file written to is returned invisibly.
Michael Friendly
promptData
## Not run:
use_data_doc(iris)
unlink("iris.R")
# using variable labels
labels <- c("Sepal length (mm)", "Sepal width (mm)", "Petal length (mm)", "Petal width (mm)", "Iris species" )
# console output
zz <- use_data_doc(iris, filename=NA, labels=labels)
cat(unlist(zz), sep="\n")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.