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

https://github.com/trangdata/applepie


https://github.com/trangdata/applepie

Last synced: about 2 months ago
JSON representation

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%"
)
```

# applepie

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

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

## Installation

You can install the released version of applepie with:

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

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

```{r example}
library(applepie)
## List packages in the rOpenSci R-universe
ropensci_universe_pkgs <- get_packages("ropensci")
head(ropensci_universe_pkgs)
```