| export_Table {QurvE} | R Documentation | 
Export a tabular object as tab-separated .txt file
Description
Export a tabular object as tab-separated .txt file
Usage
export_Table(table, out.dir = tempdir(), out.nm = deparse(substitute(table)))
Arguments
table | 
 A tabular R object (dataframe, matrix, array)  | 
out.dir | 
 The path to the output directory. Default: the working directory  | 
out.nm | 
 The output filename (with or without '.txt' ending). Default: the name of   | 
Value
NULL
Examples
if(interactive()){
df <- data.frame('A' = seq(1:10), 'B' = rev(seq(1:10)))
export_Table(df)
}
[Package QurvE version 1.1.1 Index]