Learn R Programming

stim (version 1.0.0)

summary.stim: Summary method for stim objects

Description

Summarize a set of Stability Informed Models

Usage

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

Value

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

Arguments

object

An object of class stim

...

Not used

See Also

stim

Examples

Run this code
# \donttest{
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)
# }

Run the code above in your browser using DataLab