summary.stim {stim}R Documentation

Summary method for stim objects

Description

Summarize a set of Stability Informed Models

Usage

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

Arguments

object

An object of class stim

...

Not used

Value

A print out containing the results for a set of Stability Informed Models

See Also

stim

Examples


model <- 'Y~X'
stability <- data.frame(X = .3, Y = .3)
dat <- data.frame(Y = rnorm(500, 0, 1), X = rnorm(500, 0, 1))

modelFit <- stim(data = dat, model = model, stability = stability)

summary(modelFit)



[Package stim version 1.0.0 Index]