Learn R Programming

RclusTool (version 0.91)

loadPreprocessFile: Preprocessing loading

Description

Load a csv file configuration with instruction to remove bad observations and builds object config that describes all preprocessings to apply.

Usage

loadPreprocessFile(file.config, ...)

Arguments

file.config

character vector specifying the name of a csv file with preprocessing instructions.

...

parameters adressed to read.csv functions.

Value

operations character matrix describing all preprocessing operations.

Details

loadPreprocessFile reads a csv file configuration with instruction to remove bad particles and builds object config that describes all preprocessings done

See Also

applyPreprocessing

Examples

Run this code
# NOT RUN {
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)

# }

Run the code above in your browser using DataLab