Learn R Programming

smoothic (version 1.2.0)

summary.smoothic: Summarising Smooth Information Criterion (SIC) Fits

Description

summary method class “smoothic

Usage

# S3 method for smoothic
summary(object, ...)

Value

A list containing the following components:

  • model - the matched model from the smoothic object.

  • coefmat - a typical coefficient matrix whose columns are the estimated regression coefficients, estimated standard errors (SEE) and p-values.

  • plike - value of the penalized likelihood function.

Arguments

object

an object of class “smoothic” which is the result of a call to smoothic.

...

further arguments passed to or from other methods.

Author

Meadhbh O'Neill

Examples

Run this code
# Sniffer Data --------------------
# MPR Model ----
results <- smoothic(
  formula = y ~ .,
  data = sniffer,
  family = "normal",
  model = "mpr"
)
summary(results)

Run the code above in your browser using DataLab