coef.cv.bridge {rbridge}R Documentation

Extract coefficients from a 'cv.bridge' object

Description

Extract coefficients from a 'cv.bridge' object.

Usage

## S3 method for class 'cv.bridge'
coef(object, s = c("lambda.1se", "lambda.min"), ...)

Arguments

object

A 'cv.bridge' object.

s

Value(s) of the penalty parameter lambda at which predictions are required.

...

Additional arguments for compatibility.

Value

A vector of coefficients

Author(s)

Bahadir Yuzbasi, Mohammad Arashi and Fikri Akdeniz
Maintainer: Bahadir Yuzbasi b.yzb@hotmail.com

See Also

predict.cv.rbridge

Examples

set.seed(2019) 
beta <- c(3, 1.5, 0, 0, 2, 0, 0, 0)
p <- length(beta)
beta <- matrix(beta, nrow = p, ncol = 1)

n = 100
X = matrix(rnorm(n*p),n,p)
y = X%*%beta + rnorm(n) 

model1 <- cv.bridge(X, y, q = 1)
coef(model1,s='lambda.min')

[Package rbridge version 1.0.2 Index]