Description Usage Arguments Examples
View source: R/drop_read_csv.R
A lightweight wrapper around read.csv
to read csv files from Dropbox into memory
1 | drop_read_csv(file, dest = tempdir(), dtoken = get_dropbox_token(), ...)
|
file |
Name of file with full path relative to Dropbox root |
dest |
A temporary directory where a csv file is downloaded before being read into memory |
dtoken |
The Dropbox token generated by |
... |
Additional arguments into |
1 2 3 4 5 6 7 | ## Not run:
write.csv(iris, file = "iris.csv")
drop_upload("iris.csv")
# Now let's read this back into an R session
new_iris <- drop_read_csv("iris.csv")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.