| Title: | Easily Install and Load the R4SUB Ecosystem |
|---|---|
| Description: | The 'r4sub' package is a meta-package that installs and loads core packages of the R4SUB (R for Regulatory Submission) clinical submission readiness ecosystem. Loading 'r4sub' attaches 'r4subcore', 'r4subtrace', 'r4subscore', 'r4subrisk', 'r4subdata', and 'r4subprofile'. |
| Authors: | Pawan Rama Mali [aut, cre, cph] (ORCID: <https://orcid.org/0000-0001-7864-5819>) |
| Maintainer: | Pawan Rama Mali <[email protected]> |
| License: | MIT + file LICENSE |
| Version: | 0.1.0 |
| Built: | 2026-05-16 07:03:48 UTC |
| Source: | https://github.com/r4sub/r4sub |
Returns the names of the R4SUB packages that are automatically attached
when library(r4sub) is called.
core_packages()core_packages()
A character vector of package names.
core_packages()core_packages()
Prints citation information for the R4SUB ecosystem and each installed core package. Use this when citing R4SUB tools in a regulatory submission document, scientific paper, or validation report.
r4sub_cite(package = NULL)r4sub_cite(package = NULL)
package |
Character. Name of a specific R4SUB package to cite. If
|
Invisibly returns a named list of citation objects, one per
package. Called for its side effect of printing citation information to
the console.
r4sub_cite() r4sub_cite("r4subcore")r4sub_cite() r4sub_cite("r4subcore")
Reports any exported function name collisions between attached R4SUB packages and other loaded packages.
r4sub_conflicts()r4sub_conflicts()
A tibble with columns: func, r4sub_package, other_package.
Returned invisibly. Prints conflicts if any exist.
r4sub_conflicts()r4sub_conflicts()
Prints the NEWS entries for each installed R4SUB ecosystem package. Useful for tracking what has changed across the ecosystem after updating.
r4sub_news(package = NULL)r4sub_news(package = NULL)
package |
Character. Name of a specific R4SUB package to show news for.
Must be one of the core R4SUB packages. If |
Invisibly returns a named list of news database objects, one per package. Called for its side effect of printing NEWS entries to the console.
r4sub_news() r4sub_news("r4subcore")r4sub_news() r4sub_news("r4subcore")
Returns a tibble of all R4SUB packages with their installed version and current attachment status.
r4sub_packages(include_self = TRUE)r4sub_packages(include_self = TRUE)
include_self |
Logical. If |
A tibble with columns: package, version, attached.
r4sub_packages()r4sub_packages()
Reports the installed version of each R4SUB ecosystem package and highlights any packages that are not installed.
r4sub_status()r4sub_status()
A tibble with columns: package, installed. Returned invisibly.
Called for its side effect of printing installation status to the console.
r4sub_status()r4sub_status()