Description Usage Arguments Value Note See Also Examples
View source: R/p_information.R
Provides the information from for a package from the NAMESPACE. Information may include: title, version, author, maintainer, description, depends, imports, suggests
1 2 3 |
package |
Name of the package to grab information for. Default is
|
... |
Names of fields (see |
fields |
A character vector giving the tags of fields to return (for use inside of functions rather than ...). |
Returns a list of fields.
Note that the output from p_information
(when no
fields are passed) prints pretty but is actually an accessible list (use
names(p_info())
test).
packageDescription
,
p_information
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | p_information()
p_info()
names(p_info())
p_info()[names(p_info())]
p_info(pacman)
p_info(pacman, Author)
p_info(pacman, BugReports, URL)
p_info(pacman, fields = "Version")
## Not run:
p_extract(p_info(ggplot2, "Depends"))
p_extract(p_info(ggplot2, "Imports"))
lapply(p_info(ggplot2, "Imports", "Depends", "Suggests"), p_extract)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.