Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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'
- Host: GitHub
- URL: https://github.com/maelle/apollo13
- Owner: maelle
- License: other
- Created: 2021-05-27T10:56:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-09T12:09:16.000Z (over 3 years ago)
- Last Synced: 2024-11-05T03:23:05.810Z (2 months ago)
- Language: R
- Size: 26.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
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")
```
## ExampleThis 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")
```