monoSpline {lumi} | R Documentation |
monoSpline(x, y, newX=NULL, nKnots = 6, ifPlot = FALSE)
x |
a vector represents x values |
y |
a vector represents y values |
newX |
the new values to be transformed. If not provided, "x" will be used. |
nKnots |
parameter used by function smoothCon in package mgcv |
ifPlot |
determine whether to plot intermediate results |
Function internally called by monoSmu
return the transformed "newX" based on the smoothed curve
Simon Lin, Pan Du
x <- sort(runif(200) * 100) y <- x + rnorm(200) * 10 temp <- monoSpline(x, y, newX=1:100, ifPlot=TRUE)