Open web pages for pkgmatch results
Arguments
- p
A
pkgmatchobject returned from either pkgmatch_similar_pkgs or pkgmatch_similar_fns.- n
Number of top-matching entries which should be opened. Defaults to the value passed to the main functions.
Value
(Invisibly) A named vector of integers, with 0 for all pages able to be successfully opened, and 1 otherwise.
See also
Other utils:
generate_pkgmatch_example_data(),
head.pkgmatch(),
pkgmatch_load_data(),
pkgmatch_update_cache(),
print.pkgmatch(),
text_is_code()
Examples
if (FALSE) { # \dontrun{
input <- "genomics and transcriptomics sequence data"
p <- pkgmatch_similar_pkgs (input)
pkgmatch_browse (p) # Open main package pages on rOpenSci
p <- pkgmatch_similar_pkgs (input, corpus = "cran")
pkgmatch_browse (p) # Open main package pages on CRAN
p <- pkgmatch_similar_fns (input)
pkgmatch_browse (p) # Open pages for best-matching rOpenSci functions
} # }
