summary.splmm {splmm} | R Documentation |
Summarize an 'splmm' object
Description
Providing an elaborate summary of a 'splmm'
object.
Usage
## S3 method for class 'splmm'
summary(object, ...)
Arguments
object |
a |
... |
not used. |
Details
This functions shows a detailed summary of a 'splmm'
object.
Value
No return value, a print-out of a 'splmm'
object's detailed summary is produced.
Examples
data(simulated_data)
set.seed(144)
fit = splmm(x=simulated_data$x,y=simulated_data$y,
z=simulated_data$z,grp=simulated_data$grp,
lam1=0.1,lam2=0.01, penalty.b="scad", penalty.L="scad")
summary(fit)
data(cognitive)
x <- model.matrix(ravens ~schoolid+treatment+year+sex+age_at_time0
+height+weight+head_circ+ses+mom_read+mom_write
+mom_edu, cognitive)
z <- x
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)
[Package splmm version 1.2.0 Index]