Some help pages have links to other pages and they might be linked from others but they are closed network: there is no link that leads to different help pages. Each group of linked help pages is a clique.
Value
Return a data.frame of help pages not connected to the network of help pages.
Or NULL if nothing are found.
NA if not able to collect the data from CRAN.
Details
The first clique is the biggest one. You might want to check if others cliques can be connected to this one.
Requires igraph.
See also
Other functions related to CRAN help pages:
cran_help_pages_not_linked(),
cran_help_pages_wo_links()
Examples
# \donttest{
chc <- cran_help_cliques("BaseSet")
#> Downloading and caching CRAN's packages xrefs for this session.
#> Downloading and caching base R's aliases for this session.
#> Warning: Packages with targets not present in a OS:
#> ‘base’, ‘grDevices’, ‘parallel’
#> Warning: Packages with targets not present in a OS:
#> ‘sfsmisc’
#> Warning: Some links are distinct depending on the OS.
if (!is.null(dim(chc))) {
table(chc$clique)
chc[chc$clique != 1L, ]
}
#> from_pkg from_Rd clique to_pkg to_Rd n
#> 1993 BaseSet cardinality.Rd 2 BaseSet size.Rd 1
#> 1994 BaseSet size.Rd 2 BaseSet cardinality.Rd 1
# }