drop_read_csv: drop_read_csv

Description Usage Arguments Examples

View source: R/drop_read_csv.R

Description

A lightweight wrapper around read.csv to read csv files from Dropbox into memory

Usage

1

Arguments

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 drop_auth. rdrop2 will try to automatically locate your local credential cache and use them. However, if the credentials are not found, the function will initiate a new authentication request. You can override this in drop_auth by pointing to a different location where your credentials are stored.

...

Additional arguments into read.csv

Examples

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)

rdrop2 documentation built on Aug. 5, 2020, 5:07 p.m.

Related to drop_read_csv in rdrop2...