uniexport: uniexport

View source: R/uniexport.R

uniexportR Documentation

uniexport

Description

Exports files in 5 different data types (Robject, Rimage, excel, csv and textfile)

Usage

uniexport(x)

Arguments

Robject

the object to be writen. It must be written in quotes

type

the data type of the file to export. Can be Robject, Rimage, excel, csv and textfile.

path

location of the file to export.

filename

name of the filename. By default, it will be the name of the R object.

date

a logical value indicating whether the filename must include the current date.

...

Examples

df <- data.frame(a=rnorm(10), b=runif(10)) # Create a data frame object
uniexport(Robject="df", type = "csv", path = getwd(), date=T)

douve/UEMR documentation built on Aug. 28, 2023, 2:30 p.m.