Explore the relationship between CRAN packages and other packages. If the target package is ambiguous it is omitted.
Value
A data.frame with 6 columns: from_pkg, to_pkg, n (Number of links).
NA if not able to collect the data from CRAN.
See also
Other links from CRAN:
cran_links(),
cran_pages_links(),
cran_targets_links(),
links()
Examples
# \donttest{
cpkl <- cran_pkges_links()
#> Warning: Some links are distinct depending on the OS.
head(cpkl)
#> from_pkg to_pkg n
#> [1,] "AATtools" "AATtools" "3"
#> [2,] "ABCoptim" "graphics" "3"
#> [3,] "ABCoptim" "stats" "3"
#> [4,] "ABM" "ABM" "39"
#> [5,] "ACDm" "Rsolnp" "3"
#> [6,] "ACDm" "ggplot2" "3"
# }