exporterD | R Documentation |
Wrapper function for write.csv
allowing to export data.frame in a csv file by using dialog box.
exporterD(data = NULL, nom = NULL)
data |
data frame to be written. |
nom |
Character string naming a file or a connection open for writing. "" indicates output to the console. |
Nicolas Stefaniak
exporterD(data = cars, nom = "cars.csv")
# is the same as
write.csv(x=cars, file="cars.csv")
# but can also be used with GUI
exporterD()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.