Learn R Programming

coefplot (version 1.2.6)

extract.coef.glmnet: extract.coef.glmnet

Description

Extract Coefficient Information from Models

Usage

# S3 method for glmnet
extract.coef(model, lambda = stats::median(model$lambda),
  ...)

Arguments

model

Model object from which to extract information.

lambda

Value of penalty parameter

Further arguments

Value

A data.frame containing the coefficient, the standard error and the variable name.

Details

Gets the coefficient values and variable names from a model. Since glmnet does not have standard errors, those will just be NA.

Examples

Run this code
# NOT RUN {
library(glmnet)
library(ggplot2)
library(useful)
data(diamonds)
diaX <- build.x(price ~ carat + cut + x - 1, data=diamonds, contrasts = TRUE)
diaY <- build.y(price ~ carat + cut + x - 1, data=diamonds)
modG1 <- glmnet(x=diaX, y=diaY)
extract.coef(modG1)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab