Created
March 30, 2025 11:27
-
-
Save llrs/486473c1fc10a8c7ac76a2e8b680cf73 to your computer and use it in GitHub Desktop.
Gist exploring base help pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!requireNamespace("remotes")) { | |
install.packages("remotes) | |
remotes::install_github("llrs/reppo.data") | |
library("repo.data") | |
bhc <- base_help_cliques() | |
bhc | |
## from_pkg from_Rd clique to_pkg to_Rd n | |
## 1 grid absolute.size.Rd 1 grid widthDetails.Rd 1 | |
## 2 grid widthDetails.Rd 1 grid absolute.size.Rd 1 | |
## 3 grid gridCoords.Rd 2 grid grobCoords.Rd 1 | |
## 4 grid grobCoords.Rd 2 grid gridCoords.Rd 1 | |
## 5 tools HTMLheader.Rd 3 <NA> <NA> NA | |
## 6 tools toHTML.Rd 3 tools HTMLheader.Rd 2 | |
bhnl <- base_help_pages_not_linked() | |
nrow(bhnl) | |
## 333 | |
bhwl <- base_help_pages_wo_links() | |
nrow(bhwl) | |
## 163 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment