Build the prediction design matrix based on new data and model_matrices object created by make_matrices
predict.LaMa_matrices.Rd
Build the prediction design matrix based on new data and model_matrices object created by make_matrices
Usage
# S3 method for class 'LaMa_matrices'
predict(object, ...)
Arguments
- object
model matrices object as returned from
make_matrices
- ...
needs to be a
newdata
data frame containing the variables in the formula and new data for which to evaluate the basis
Examples
modmat = make_matrices(~ s(x), data.frame(x = 1:10))
Z_predict = predict(modmat, data.frame(x = 1:10 - 0.5))