View source: R/sampleBuilding.R
savePreprocess | R Documentation |
Export all preprocessing operations in a csv file.
savePreprocess(filename.csv, config, dir)
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. |
savePreprocess exports all preprocessing operations in a csv file
csv file containing preprocessing.
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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.