# Examples use swirl dataset, for description type ? swirl
data(swirl)
# To use the default parameters, which adjusts A, PT, PL and Spatial2D
# biases sequentially and compares all models available, simple type
wf.loc <- makeStepList()
# To apply loess for the A bias, and to omit the Spatial2D step
wf.loc <- makeStepList(A=("loess"), Spatial2D=NULL)
# To compare only rlm and loess in the A bias step, and other biases as default
wf.loc <- makeStepList(A=c("rlm","loess"))
# input to the stepWithinNorm function
## Not run:
# step.swirl1 <- stepWithinNorm(swirl[,1],wf.loc=wf.loc)## End(Not run)
Run the code above in your browser using DataLab