Skip to contents

These methods extract the fitted model's call information, data, effective degrees of freedom, conditional log-likelihood, and variable-wise summary.

Usage

# S3 method for class 'vinereg'
print(x, ...)

# S3 method for class 'vinereg'
summary(object, ...)

# S3 method for class 'vinereg'
logLik(object, ...)

# S3 method for class 'vinereg'
nobs(object, use.fallback = TRUE, ...)

# S3 method for class 'vinereg'
formula(x, ...)

# S3 method for class 'vinereg'
model.frame(formula, ...)

Arguments

x, object, formula

a vinereg object.

...

unused.

use.fallback

unused; included for compatibility with nobs().

Value

print() returns x invisibly. summary() returns a data frame with one row for the response and each selected predictor. logLik() returns an object of class logLik; its df attribute contains the effective degrees of freedom. nobs() returns the number of observations used for fitting. formula() and model.frame() return the model formula and frame.