The pins package provides a robust set of functions to read and write
standard types of files using standard tools, e.g. CSV files using
read.csv()
and write.csv()
. However, from time
to time, you may wish read or write using other tools. You may want to
read and write:
An escape hatch for a customized approach is provided:
pin_upload()
and pin_download()
. The goal of
this vignette is to show how you can incorporate these into your
workflow.
Two points to keep in mind:
pin_upload()
takes a vector of paths
to
local files.pin_download()
returns a vector of paths
to local files.We’ll follow an example where we write and read uncompressed Arrow files, starting by creating a temporary board:
library(pins)
<- board_temp() board
If you are writing a one-off file, you can do everything directly:
<- "mtcars-arrow"
pin_name
# file name will be `mtcars-arrow.arrow`
<- fs::path_temp(fs::path_ext_set(pin_name, "arrow"))
path
::write_feather(mtcars, path, compression = "uncompressed")
arrow
pin_upload(board, paths = path, name = pin_name)
#> Creating new version '20230121T025448Z-8a125'
Reading from the downloaded pin is straightforward;
pin_download()
returns a local path that can be piped to
arrow::read_feather()
:
<-
mtcars_download pin_download(board, pin_name) %>%
::read_feather()
arrow
head(mtcars_download)
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> 1 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4
#> 2 21.0 6 160 110 3.90 2.875 17.02 0 1 4 4
#> 3 22.8 4 108 93 3.85 2.320 18.61 1 1 4 1
#> 4 21.4 6 258 110 3.08 3.215 19.44 1 0 3 1
#> 5 18.7 8 360 175 3.15 3.440 17.02 0 0 3 2
#> 6 18.1 6 225 105 2.76 3.460 20.22 1 0 3 1
If you want to write more than one custom file of a certain type, or using a certain tool, you might consider writing a helper function:
<- function(board, x, name, ...) {
pin_upload_arrow # path deleted when `pin_upload_arrow()` exits
<- fs::path_temp(fs::path_ext_set(name, "arrow"))
path ::defer(fs::file_delete(path))
withr
# custom writer
::write_feather(x, path, compression = "uncompressed")
arrow
pin_upload(board, paths = path, name = name, ...)
}
This helper function is designed to work like
pin_write()
:
pin_upload_arrow(board, x = mtcars, name = "mtcars-arrow2")
#> Creating new version '20230121T025448Z-8a125'
As before, you can pipe the result of pin_download()
to
your reader function:
pin_download(board, name = "mtcars-arrow2") %>%
::read_feather() %>%
arrowhead()
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> 1 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4
#> 2 21.0 6 160 110 3.90 2.875 17.02 0 1 4 4
#> 3 22.8 4 108 93 3.85 2.320 18.61 1 1 4 1
#> 4 21.4 6 258 110 3.08 3.215 19.44 1 0 3 1
#> 5 18.7 8 360 175 3.15 3.440 17.02 0 0 3 2
#> 6 18.1 6 225 105 2.76 3.460 20.22 1 0 3 1
If you want to use this same approach to archive and pin a whole directory, you can write a helper function like:
<- function(board, dir, name, ...) {
pin_upload_archive <- fs::path_temp(fs::path_ext_set(name, "tar.gz"))
path ::defer(fs::file_delete(path))
withr::archive_write_dir(path, dir)
archivepin_upload(b, paths = path, name = name, ...)
}
You can download the compressed archive via
pin_download(board, name)
and then pipe that path straight
to archive::archive_extract()
to extract your archive in a
new diretory.