Description Usage Arguments Value Examples
Creates a prediction using a tandem-object.
1 2  | 
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().  | 
The predicted response vector.
1 2 3 4 5 6 7 8 9  | # 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)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.