powered by
Export a tabular object as tab-separated .txt file
export_Table(table, out.dir = tempdir(), out.nm = deparse(substitute(table)))
NULL
A tabular R object (dataframe, matrix, array)
The path to the output directory. Default: the working directory
The output filename (with or without '.txt' ending). Default: the name of table followed by '.txt'.
table
if(interactive()){ df <- data.frame('A' = seq(1:10), 'B' = rev(seq(1:10))) export_Table(df) }
Run the code above in your browser using DataLab