Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rstudio/pins
Pin, Discover and Share Resources
https://github.com/rstudio/pins
azure gcloud rpins rsconnect rstats s3 storage
Last synced: 3 months ago
JSON representation
Pin, Discover and Share Resources
- Host: GitHub
- URL: https://github.com/rstudio/pins
- Owner: rstudio
- License: other
- Created: 2019-03-22T16:06:23.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-10T23:08:28.000Z (7 months ago)
- Last Synced: 2024-06-11T17:10:32.827Z (6 months ago)
- Topics: azure, gcloud, rpins, rsconnect, rstats, s3, storage
- Language: R
- Homepage: https://pins.rstudio.com
- Size: 36.6 MB
- Stars: 301
- Watchers: 29
- Forks: 63
- Open Issues: 30
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
output:
github_document:
fig_width: 8
fig_height: 4
---```{r, echo=FALSE, message=FALSE}
knitr::opts_chunk$set(
fig.path = "tools/readme/",
dev = "png",
dpi = 96,
comment = "#>",
collapse = TRUE
)
```[![R-CMD-check](https://github.com/rstudio/pins-r/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rstudio/pins-r/actions/workflows/R-CMD-check.yaml)
[![CRAN Status](https://www.r-pkg.org/badges/version/pins)](https://cran.r-project.org/package=pins)
[![Codecov test coverage](https://codecov.io/gh/rstudio/pins-r/branch/main/graph/badge.svg)](https://app.codecov.io/gh/rstudio/pins-r?branch=main)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)The pins package publishes data, models, and other R objects, making it easy to share them across projects and with your colleagues.
You can pin objects to a variety of pin *boards*, including folders (to share on a networked drive or with services like DropBox), Posit Connect, Databricks, Amazon S3, Google Cloud Storage, Azure storage, and Microsoft 365 (OneDrive and SharePoint).
Pins can be automatically versioned, making it straightforward to track changes, re-run analyses on historical data, and undo mistakes.You can use pins from Python as well as R. For example, you can use one language to read a pin created with the other. Learn more about [pins for Python](https://rstudio.github.io/pins-python/).
## Installation
You can install pins from CRAN with:
```{r, eval = FALSE}
install.packages("pins")
```You can install the development version from GitHub:
```{r, eval = FALSE}
# install.packages("pak")
pak::pak("rstudio/pins-r")
```## Usage
To use the pins package, you must first create a pin board.
A good place to start is `board_folder()`, which stores pins in a directory you specify.
Here I'll use a special version of `board_folder()` called `board_temp()` which creates a temporary board that's automatically deleted when your R session ends.
This is great for examples, but obviously you shouldn't use it for real work!```{r setup}
library(pins)board <- board_temp()
board
```You can "pin" (save) data to a board with `pin_write()`.
It takes three arguments: the board to pin to, an object, and a name:```{r}
board %>% pin_write(head(mtcars), "mtcars")
```As you can see, the data saved as an `.rds` by default, but depending on what you're saving and who else you want to read it, you might use the `type` argument to instead save it as a Parquet, Arrow, CSV, or JSON file.
You can later retrieve the pinned data with `pin_read()`:
```{r}
board %>% pin_read("mtcars")
```A board on your computer is good place to start, but the real power of pins comes when you use a board that's shared with multiple people.
To get started, you can use `board_folder()` with a directory on a shared drive or in dropbox, or if you use [Posit Connect](https://posit.co/products/enterprise/connect/) you can use `board_connect()`:```{r}
#| eval: false
board <- board_connect()
#> Connecting to Posit Connect 2024.08.0 at
board %>% pin_write(tidy_sales_data, "sales-summary", type = "rds")
#> Writing to pin 'hadley/sales-summary'
```Then, someone else (or an automated Quarto report) can read and use your pin:
```{r}
#| eval: false
board <- board_connect()
board %>% pin_read("hadley/sales-summary")
```You can easily control who gets to access the data using the Posit Connect permissions pane.
The pins package also includes boards that allow you to share data on services like Databricks Volumes (`board_databricks()`), Amazon's S3 (`board_s3()`), Azure's blob storage (`board_azure()`), and Google Cloud Storage (`board_gcs()`).
Learn more in `vignette("pins")`.