Description Usage Arguments Value References See Also Examples
Save/load R object(s) to/from S3
1 2 3 4 5 | s3save(..., object, bucket, envir = parent.frame(), opts = NULL)
s3save_image(object, bucket, opts = NULL)
s3load(object, bucket, envir = parent.frame(), ...)
|
... |
For |
object |
For |
bucket |
Character string with the name of the bucket, or an object of class “s3_bucket”. |
envir |
For |
opts |
Additional arguments passed to |
For s3save
, a logical, invisibly. For s3load
, NULL
invisibly.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## Not run:
# create bucket
b <- put_bucket("myexamplebucket")
# save a dataset to the bucket
s3save(mtcars, iris, object = "somedata.Rdata", bucket = b)
get_bucket(b)
# load the data from bucket
e <- new.env()
s3load(object = "somedata.Rdata", bucket = b, envir = e)
ls(e)
# cleanup
rm(e)
delete_object(object = "somedata.Rdata", bucket = "myexamplebucket")
delete_bucket("myexamplebucket")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.