update_docstring | R Documentation |
The roxygen2 package makes it possible to write documentation for R functions directly above the corresponding function. This function can be used to update the parameter list of a documentation string (docstring) of a valid function of a valid R file. The update is done by comparing the currently listed parameters with the actual function parameters. Outdated parameters are removed and missing parameters are added to the docstring.
update_docstring(uri, func, content = NULL)
uri |
Path to R file. |
func |
Function name. If a function is defined multiple times inside the provided file, only the last occurence will be considered. |
content |
R code as string. If provided, uri is ignored. |
A character vector of length 1 containing the updated docstring.
uri <- system.file("testfiles/funcs.R", package = "toscutil")
func <- "f4"
update_docstring(uri, func)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.