Learn R Programming

repo.data (version 0.1.5)

cran_help_pages_wo_links: Help pages not linked

Description

Help pages without links from other help pages. This makes harder to find them.

Usage

cran_help_pages_wo_links(packages = NULL)

Value

A data.frame with two columns: Package and Source NA if not able to collect the data from CRAN.

Arguments

packages

A vector with packages or NULL for all packages.

See Also

Other functions related to CRAN help pages: cran_help_cliques(), cran_help_pages_not_linked()

Examples

Run this code
# \donttest{
ap <- available.packages()
if (NROW(ap)) {
    a_package <- rownames(ap)[startsWith(rownames(ap), "a")][1]
    chwl <- cran_help_pages_wo_links(a_package)
    head(chwl)
}
# }

Run the code above in your browser using DataLab