summary.LR {LorenzRegression} | R Documentation |
Provides a summary for an object of class "LR"
.
## S3 method for class 'LR'
summary(object, ...)
object |
An object of class |
... |
Additional arguments. |
The inference provided in the coefficients
matrix is obtained by using the asymptotic normality and estimating the asymptotic variance via bootstrap.
An object of class "summary.LR"
, containing the following elements:
call
The matched call.
ineq
A matrix with one row and three columns providing information on explained inequality. The first column gives the explained Gini coefficient, the second column gives the Gini coefficient of the response. The third column gives the Lorenz-R^2
.
coefficients
A matrix providing information on the estimated coefficients. The first column gives the estimates.
If object
inherits from "LR_boot"
, bootstrap inference was performed and the matrix contains further information. The second column is the boostrap standard error. The third column is the z-value. Finally, the last column is the p-value.
In this case, the class "summary.LR_boot"
is added to the output.
## For examples see example(Lorenz.Reg) and example(Lorenz.boot)