Learn R Programming

PLreg (version 0.4.1)

methodsPLreg: Methods for PLreg Objects

Description

Some S3 Methods for PLreg regression models.

Usage

# S3 method for PLreg
summary(object, type = "standardized", ...)

# S3 method for PLreg print(x, ...)

# S3 method for summary.PLreg print(x, ...)

# S3 method for PLreg coef(object, ...)

# S3 method for PLreg vcov(object, ...)

# S3 method for PLreg logLik(object, ...)

# S3 method for PLreg model.matrix(object, model = c("median", "dispersion"), ...)

Arguments

object, x

fitted model object of class "PLreg".

type

character specifying the type of residuals to be included in the summary output, see residuals.PLreg.

...

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

PLreg

Examples

Run this code
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)

Run the code above in your browser using DataLab