avas(x, y, wt=<<see below>>, monotone=NULL, linear=NULL, categorical=NULL, circular=NULL, tolerance=0.01, span.var="cv")
The chapter "Regression and Smoothing for Continous Response Data" in the S-PLUS Guide to Statistical and Mathematical Analysis.
x <- runif(200, 0, 2*pi); y <- exp(sin(x)+rnorm(200)/2) a <- avas(x, y) plot(y, a$ty) # view the response transformation plot(x, a$tx) # view the carrier transformation plot(a$tx, a$ty) # examine the linearity of the fitted model