predict.bspline {spBayesSurv} | R Documentation |
Evaluate a Cubic Spline Basis
Description
Evaluate a predefined spline basis at given values.
Usage
## S3 method for class 'bspline'
predict(object, newx, ...)
Arguments
object |
the result of a call to |
newx |
the |
... |
Optional additional arguments. At present no additional arguments are used. |
Author(s)
Haiming Zhou and Timothy Hanson
See Also
Examples
require(stats)
basis <- bspline(women$height, df = 5)
newX <- seq(58, 72, length.out = 51)
# evaluate the basis at the new data
predict(basis, newX)
[Package spBayesSurv version 1.1.8 Index]