Learn R Programming

lavaSearch2 (version 2.0.3)

nStep: Find the Number of Steps Performed During the Sequential Testing

Description

Find the number of steps performed during the sequential testing.

Usage

nStep(object)

# S3 method for modelsearch2 nStep(object)

Value

an integer.

Arguments

object

a modelsearch2 object.

Examples

Run this code
if (FALSE) {
mSim <- lvm(Y~G+X1+X2)
addvar(mSim) <- ~Z1+Z2+Z3+Z4+Z5+Z6
df.data <- lava::sim(mSim, 1e2)

mBase <- lvm(Y~G)
addvar(mBase) <- ~X1+X2+Z1+Z2+Z3+Z4+Z5+Z6
e.lvm <- estimate(mBase, data = df.data)
res <- modelsearch2(e.lvm, method.p.adjust = "holm")
nStep(res)
}

Run the code above in your browser using DataLab