One can perform regular ordinary generalized linear model in R using glm function that has it's own method for summary function and one can summary of the model in which output there are p-values for each variable. Depending on those p-values one can say which variables are statistically significance or not under specific confidence level.
My question is. Is there is the same functionality for cv.glmnet
function from glmnet
package? I know that after computation I can receive a table with coefficients coef(model, s="lambda.min")
where some of them are not zero. So I assume (maybe wrongly) that those non-zero are statistically significance. Am I right? Is there any method that provides p-values or confidence intervals for those coefficients?