savePreprocess {RclusTool} | R Documentation |
Preprocessing exportation
Description
Export all preprocessing operations in a csv file.
Usage
savePreprocess(filename.csv, config, dir)
Arguments
filename.csv |
character vector specifying the name of the csv file. |
config |
4-columns character matrix describing all preprocessing operations. |
dir |
character vector specifying the directory of the csv file. |
Details
savePreprocess exports all preprocessing operations in a csv file
Value
csv file containing preprocessing.
Examples
test.file <- tempfile()
config <- matrix(c("select","x",NA,NA,"select","y",NA,NA), byrow=TRUE, ncol=4)
savePreprocess(basename(test.file), config, dirname(test.file))
[Package RclusTool version 0.91.6 Index]