Description Usage Arguments Value Author(s) References See Also Examples
View source: R/ncpen_cpp_wrap.R
The function returns the coefficients matrix for all lambda values.
1 2 |
object |
(ncpen object) fitted |
... |
other S3 parameters. Not used. |
beta |
The coefficients matrix or list for |
Dongshin Kim, Sunghoon Kwon, Sangin Lee
Lee, S., Kwon, S. and Kim, Y. (2016). A modified local quadratic approximation algorithm for penalized optimization problems. Computational Statistics and Data Analysis, 94, 275-286.
1 2 3 4 5 6 7 8 9 10 | ### linear regression with scad penalty
sam = sam.gen.ncpen(n=200,p=20,q=5,cf.min=0.5,cf.max=1,corr=0.5)
x.mat = sam$x.mat; y.vec = sam$y.vec
fit = ncpen(y.vec=y.vec,x.mat=x.mat)
coef(fit)
### multinomial regression with classo penalty
sam = sam.gen.ncpen(n=200,p=20,q=5,k=3,cf.min=0.5,cf.max=1,corr=0.5,family="multinomial")
x.mat = sam$x.mat; y.vec = sam$y.vec
fit = ncpen(y.vec=y.vec,x.mat=x.mat,family="multinomial",penalty="classo")
coef(fit)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.