https://github.com/trangdata/applepie
https://github.com/trangdata/applepie
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/trangdata/applepie
- Owner: trangdata
- License: other
- Created: 2021-10-12T22:08:28.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-13T20:33:43.000Z (over 4 years ago)
- Last Synced: 2025-03-02T13:27:58.024Z (over 1 year ago)
- Language: R
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- 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%"
)
```
# applepie
[](https://github.com/trang1618/applepie/actions)
[](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)
```