This commit is contained in:
Hong Ooi 2021-01-14 08:38:23 +11:00
Родитель b4db834ecf
Коммит 7232971414
4 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1,6 +1,6 @@
Package: AzureStor
Title: Storage Management in 'Azure'
Version: 3.3.0.9000
Version: 3.4.0
Authors@R: c(
person("Hong", "Ooi", , "hongooi73@gmail.com", role = c("aut", "cre")),
person("Microsoft", role="cph")

Просмотреть файл

@ -1,4 +1,4 @@
# AzureStor 3.3.0.9000
# AzureStor 3.4.0
- Add helper functions to transfer data in commonly-used formats. These work via connections and so do not create temporary files on disk.
- `storage_save_rds`/`storage_load_rds`

Просмотреть файл

@ -109,7 +109,7 @@ all(mapply(identical, mtcars, mtnew)) # TRUE
### Transfer to and from connections
You can upload a (single) in-memory R object via a _connection_, and similarly, you can download a file to a connection, or return it as a raw vector. This lets you transfer an object without having to create a temporary file as an intermediate step.
You can upload a (single) in-memory R object via a connection, and similarly, you can download a file to a connection, or return it as a raw vector. This lets you transfer an object without having to create a temporary file as an intermediate step.
```r
# uploading serialized R objects via connections

Просмотреть файл

@ -110,7 +110,7 @@ all(mapply(identical, mtcars, mtnew)) # TRUE
### Transfer to and from connections
You can upload a (single) in-memory R object via a _connection_, and similarly, you can download a file to a connection, or return it as a raw vector. This lets you transfer an object without having to create a temporary file as an intermediate step.
You can upload a (single) in-memory R object via a connection, and similarly, you can download a file to a connection, or return it as a raw vector. This lets you transfer an object without having to create a temporary file as an intermediate step.
```r
# uploading serialized R objects via connections