Functions for creating and applying preprocessing pipelines.
Create preprocessing pipeline
Arguments
- ...
Preprocessing steps as named function calls.
Value
A preprocessing pipeline object (list).
Details
Creates a preprocessing pipeline specification that can be applied to data.
References
Oppenheim AV, Willsky AS, Nawab SH (1997). "Signals and Systems."
2nd ed. Prentice Hall.
Examples
pipeline <- createPipeline(
filter = list(fn = "filterSignals", lowcut = 1, highcut = 40),
detrend = list(fn = "detrendSignals", method = "linear")
)