knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) library(woodendesc)
Core packages are shipped with most R installations and some of them are loaded by default when starting a new session (though it's configurable).
To list all core packages within the woodendesc framework, i.e. the ones shown by installed.packages(priority = "base")
, the user should use wood_core_packages()
.
wood_core_packages()
In general, all core packages follow the same rule when it comes to determining their version codes: they use the same version code as R itself. Nevertheless, should the user wish to access this data anyways, the woodendesc framework provides wood_core_version()
function.
wood_core_version("graphics")
To list package dependencies the user should use wood_core_dependencies()
. Expect all "Imports" to be core packages only, as it would make no sense for a core package to depend on something else.
wood_core_dependencies("stats")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.