coef.tandem: Returns the regression coefficients from a TANDEM fit

Description Usage Arguments Value Examples

View source: R/functions.R

Description

Returns the regression coefficients from a TANDEM fit.

Usage

1
2
## S3 method for class 'tandem'
coef(object, ...)

Arguments

object

A tandem-object, as returned by tandem()

...

Not used. Other arguments for coef().

Value

The regression coefficients.

Examples

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)

TANDEM documentation built on Dec. 1, 2019, 1:12 a.m.