splmm (version 1.1.2)

summary.splmm: Summarize an 'splmm' object

Description

Providing an elaborate summary of a 'splmm' object.

Usage

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

Arguments

object

a 'splmm' object

not used.

Details

This functions shows a detailed summary of a 'splmm' object.

Examples

Run this code
# NOT RUN {
data(cognitive)

x <- model.matrix(ravens ~ schoolid+treatment+relyear+sex+age_at_time0+height+weight
+head_circ+ses1+readtest+writetest+yrsofsch, cognitive)
z <- model.matrix(ravens ~ schoolid+treatment+relyear, cognitive)

fit <- splmm(x=x,y=cognitive$ravens,z=z,grp=cognitive$id,lam1=0.1,lam2=0.1,
penalty.b="scad", penalty.L="scad")
summary(fit)
# }

Run the code above in your browser using DataCamp Workspace