
Last chance! 50% off unlimited learning
Sale ends in
Does not include deleted revisions.
drop_history(path, limit = 10, dtoken = get_dropbox_token())
path to a file in dropbox.
maximum number of revisions to return; defaults to 10.
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.
tbl_df
of metadata, one row per revision.
# NOT RUN {
write.csv(iris, file = "iris.csv")
drop_upload("iris.csv")
write.csv(iris[iris$Species == "setosa", ], file = "iris.csv")
drop_upload("iris.csv")
drop_history("iris.csv")
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab