predict.tandem {TANDEM} | R Documentation |
Creates a prediction using a tandem-object
Description
Creates a prediction using a tandem-object.
Usage
## S3 method for class 'tandem'
predict(object, newx, ...)
Arguments
object |
A tandem-object, as returned by tandem() |
newx |
A feature matrix, where the rows correspond to samples and the columns to features. |
... |
Not used. Other arguments for predict(). |
Value
The predicted response vector.
Examples
# unpack example data
x = example_data$x
y = example_data$y
upstream = example_data$upstream
# fit a tandem model, determine the coefficients and create a prediction
fit = tandem(x, y, upstream, alpha=0.5)
beta = coef(fit)
y_hat = predict(fit, newx=x)
[Package TANDEM version 1.0.3 Index]