print.PLR {LorenzRegression} | R Documentation |
Printing method for the Penalized Lorenz Regression
Description
print.PLR
prints the arguments and estimated coefficients of an object of class PLR
.
Usage
## S3 method for class 'PLR'
print(x, ...)
Arguments
x |
Output of a call to |
... |
Additional arguments. |
Value
No return value, called for printing an object of class PLR
to the console
See Also
Examples
data(Data.Incomes)
PLR <- Lorenz.Reg(Income ~ ., data = Data.Incomes, penalty = "SCAD",
sel.choice = c("BIC","CV"), h.grid = nrow(Data.Incomes)^(-1/5.5),
eps = 0.01, seed.CV = 123, nfolds = 5)
print(PLR)
[Package LorenzRegression version 1.0.0 Index]