Description Usage Arguments Details Value See Also
Use these functions to serialize an R object and write it
to a Box file. To write an object using RDS serialization,
use box_save_rds()
; for other types of serialization,
use box_write()
and provide a serialization function.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
object |
Object to be written. |
file_name |
|
dir_id |
|
description |
|
write_fun |
|
x |
Object to be written, deprecated: use |
filename |
|
... |
Other arguments passed to |
Using box_save_rds()
is relatively straightforward, your
object will be written to Box as an RDS file.
If you want to specify the serialization, use box_write()
.
For example, you may wish to write a data.frame
to Box as a CSV file. Within box_write()
, this is a
two-step process:
serialize the contents of the R object using write_fun
upload that serialization to a Box file
The default serialization-function is rio::export()
.
The rio::export()
function currently supports only data.frame
;
to serialize lists, you may wish to use jsonlite::toJSON()
.
Please note that box_write()
is used to write R objects to Box files
using standard formats. To write R objects as .RData
files,
you can use box_save()
.
Object with S3 class boxr_file_reference
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.