save_as_csv {thinkr} | R Documentation |
export a data.frame to csv
save_as_csv(dataset, path, row.names = FALSE, ...)
dataset |
a data.frame |
path |
the path |
row.names |
booleen do we have to save the row names |
... |
other write.csv parameters |
file name as character
## Not run:
iris %>% save_as_csv(file.path(tempdir(),'coucou.csv')) %>% browseURL()
## End(Not run)