View source: R/sampleBuilding.R
loadPreprocessFile | R Documentation |
Load a csv file configuration with instruction to remove bad observations and builds object config that describes all preprocessings to apply.
loadPreprocessFile(file.config, ...)
file.config |
character vector specifying the name of a csv file with preprocessing instructions. |
... |
parameters adressed to read.csv functions. |
loadPreprocessFile reads a csv file configuration with instruction to remove bad particles and builds object config that describes all preprocessings done
operations character matrix describing all preprocessing operations.
applyPreprocessing
instr <- rbind(c("select","x","log",""), c("select","y","log",""))
tf <- tempfile()
write.table(instr, tf, sep=",", col.names = FALSE, row.names = FALSE)
operations <- loadPreprocessFile(tf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.