ropkgs

knitr::opts_chunk$set(
  warning = FALSE,
  message = FALSE,
  collapse = TRUE,
  comment = "#>"
)

Project Status: Abandoned – Initial development has started, but there has not yet been a stable, usable release; the project has been abandoned and the author(s) do not intend on continuing development.

ropkgs is an R client to discover and install rOpensci packages.

Installation

# install.packages("devtools")
devtools::install_github("ropensci/ropkgs")
library("ropkgs")

List all packages

out <- ro_pkgs()
out$name
out$version
out$updated
head( out$packages )

Filter packages

Filter by category

ro_pkgs(category = "history", simplify=TRUE)

Filter by maintainer

ro_pkgs(maintainer = "Lincoln Mullen", simplify=TRUE)

Search for packages

ro_pkgs(query = "species", simplify = TRUE)

Check if a package is on CRAN

on_cran('taxize')

Install packages

install_ropensci(pkgs = 'musemeta')


ropensci/ropkgs documentation built on May 18, 2022, 7:31 p.m.