methodsPLreg {PLreg} | R Documentation |
Methods for PLreg Objects
Description
Some S3 Methods for PLreg regression models.
Usage
## S3 method for class 'PLreg'
summary(object, type = "standardized", ...)
## S3 method for class 'PLreg'
print(x, ...)
## S3 method for class 'summary.PLreg'
print(x, ...)
## S3 method for class 'PLreg'
coef(object, ...)
## S3 method for class 'PLreg'
vcov(object, ...)
## S3 method for class 'PLreg'
logLik(object, ...)
## S3 method for class 'PLreg'
model.matrix(object, model = c("median", "dispersion"), ...)
Arguments
object , x |
fitted model object of class " |
type |
character specifying the type of residuals to be included in the
summary output, see |
... |
currently not used. |
model |
character specifying for which component of the model the coefficients/covariance are extracted. |
Details
A set of methods for objects of class "PLreg
", including methods
for the functions summary
and vcov
,
which print the estimated coefficients along with some other information and
presents the covariance matrix, respectively. The summary
also presents
the partial Wald tests for the model parameters. Finally, summary
returns
an object of class "summary.PLreg
" containing information to be printed
using the print
method.
See Also
Examples
data("bodyfat_Aeolus")
fitPL <- PLreg(percentfat ~ 1, data = bodyfat_Aeolus,
family = "SN", zeta = 1.6)
fitPL
summary(fitPL)
coef(fitPL, model = "median")
vcov(fitPL)
logLik(fitPL)
AIC(fitPL)
[Package PLreg version 0.4.1 Index]