Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maelle/apollo13

Client to Access the 'R-Universe' 'API'
https://github.com/maelle/apollo13

Last synced: 20 days ago
JSON representation

Client to Access the 'R-Universe' 'API'

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# apollo13

[![R-CMD-check](https://github.com/maelle/apollo13/workflows/R-CMD-check/badge.svg)](https://github.com/maelle/apollo13/actions)
[![Codecov test coverage](https://codecov.io/gh/maelle/apollo13/branch/main/graph/badge.svg)](https://codecov.io/gh/maelle/apollo13?branch=main)

The goal of apollo13 is to access R-universe API from R, for a tutorial.

## Installation

You can install the released version of apollo13 with:

``` r
# install.packages("remotes")
remotes::install_github("maelle/apollo13")
```
## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(apollo13)

## List packages in the rOpenSci R-universe
ropensci_universe_pkgs <- get_packages("ropensci")
head(ropensci_universe_pkgs)

## List maintainers in the ggseg R-universe
get_maintainers("ggseg")
```