exporterD: GUI for exporting data.frame in csv file.

View source: R/exporterD.R

exporterDR Documentation

GUI for exporting data.frame in csv file.

Description

Wrapper function for write.csv allowing to export data.frame in a csv file by using dialog box.

Usage

exporterD(data = NULL, nom = NULL)

Arguments

data

data frame to be written.

nom

Character string naming a file or a connection open for writing. "" indicates output to the console.

Author(s)

Nicolas Stefaniak

Examples


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()

NicolasStefaniak/easieR documentation built on Jan. 31, 2025, 2:59 p.m.