place.knots {mgcv} | R Documentation |
Given a univariate array of covariate values, places a set of knots for a regression spline evenly through the covariate values.
place.knots(x,nk)
x |
array of covariate values (need not be sorted). |
nk |
integer indicating the required number of knots. |
Places knots evenly throughout a set of covariates. For example, if you had 11 covariate values and wanted 6 knots then a knot would be placed at the first (sorted) covariate value and every second (sorted) value thereafter. With less convenient numbers of data and knots the knots are placed within intervals between data in order to achieve even coverage, where even means having approximately the same number of data between each pair of knots.
An array of knot locations.
Simon N. Wood simon.wood@r-project.org
http://www.stats.gla.ac.uk/~simon/
smooth.construct.cc.smooth.spec
x<-runif(30) place.knots(x,7) rm(x)