
Last chance! 50% off unlimited learning
Sale ends in
This function is the summary
method for class "lmp"
. This function
produces a set of results for a linear regression model.
By assuming that in a linear regression model the errors
are distributed as an exponential power distribution, we can use the function lmp
.
# S3 method for lmp
summary(object, ...)
# S3 method for summary.lmp
print(x, ...)
The function summary
returns a list of summary statistics of the fitted linear model
given in lmp
, using the components (list elements) call
and terms
from its argument, plus
The matched call.
A summary of the vector of residuals
Vector of coefficients.
An estimate of the shape parameter
The power deviation of order
An object of class "lmp"
, a result of a call to lmp
.
An object of class "summary.lmp"
.
Further arguments passed to or from other methods.
Angelo M. Mineo
x<-runif(30)
e<-rnormp(30,0,3,1.25)
y<-0.5+x+e
L<-lmp(y~x)
summary(L)
Run the code above in your browser using DataLab