Description Usage Arguments Value
View source: R/path_singboost.R
Runs SingBoost but saves the coefficients paths. If no coefficient path plot is needed, just use
singboost
.
1 2 3 4 5 6 7 8 9 | path.singboost(
D,
M = 10,
m_iter = 100,
kap = 0.1,
singfamily = Gaussian(),
best = 1,
LS = FALSE
)
|
D |
Data matrix. Has to be an n \times (p+1)-dimensional data frame in the format (X,Y). The X-part must not contain an intercept column containing only ones since this column will be added automatically. |
M |
An integer between 2 and |
m_iter |
Number of SingBoost iterations. Default is 100. |
kap |
Learning rate (step size). Must be a real number in ]0,1]. Default is 0.1 It is recommended to use a value smaller than 0.5. |
singfamily |
A Boosting family corresponding to the target loss function. See . |
best |
Needed in the case of localized ranking. The parameter |
LS |
If a |
Selected variables |
Names of the selected variables. |
Coefficients |
The selected coefficients as an (p+1)-dimensional vector (i.e., including the zeroes). |
Freqs |
Selection frequencies and a matrix for intercept and coefficient paths, respectively. |
Intercept path |
The intercept path as an m_{iter}-dimensional vector. |
Coefficient path |
The coefficient paths as a 2 \cdot m_{iter} \times 2-dimensional matrix. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.