print.cocktail | R Documentation |
Print a summary of the cocktail path at each step along the path. This function is modified based on the print
function from the glmnet
package.
## S3 method for class 'cocktail'
print(x, digits = max(3, getOption("digits") - 3), ...)
x |
fitted |
digits |
significant digits in printout |
... |
additional print arguments |
The call that produced the cocktail
object is printed, followed by a two-column matrix with columns Df
and Lambda
. The Df
column is the number of nonzero coefficients.
a two-column matrix, the first columns is the number of nonzero coefficients and the second column is Lambda
.
Yi Yang and Hui Zou
Maintainer: Yi Yang <yi.yang6@mcgill.ca>
Yang, Y. and Zou, H. (2013),
"A Cocktail Algorithm for Solving The Elastic Net Penalized Cox's Regression in High Dimensions", Statistics and Its Interface, 6:2, 167-173.
https://github.com/archer-yang-lab/fastcox
Friedman, J., Hastie, T. and Tibshirani, R. (2008)
"Regularization Paths for Generalized Linear Models via Coordinate
Descent", https://web.stanford.edu/~hastie/Papers/glmnet.pdf
Journal of Statistical Software, Vol. 33(1), 1-22 Feb 2010
https://www.jstatsoft.org/v33/i01/
Simon, N., Friedman, J., Hastie, T., Tibshirani, R. (2011)
"Regularization Paths for Cox's Proportional Hazards Model via
Coordinate Descent", Journal of Statistical Software, Vol. 39(5)
1-13
https://www.jstatsoft.org/v39/i05/
data(FHT)
m1<-cocktail(x=FHT$x,y=FHT$y,d=FHT$status,alpha=0.5)
print(m1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.