modelsearch: Model searching

Description Usage Arguments Value Author(s) See Also Examples

View source: R/modelsearch.R

Description

Performs Wald or score tests

Usage

1
modelsearch(x, k = 1, dir = "forward", ...)

Arguments

x

lvmfit-object

k

Number of parameters to test simultaneously. For equivalence the number of additional associations to be added instead of rel.

dir

Direction to do model search. "forward" := add associations/arrows to model/graph (score tests), "backward" := remove associations/arrows from model/graph (wald test)

...

Additional arguments to be passed to the low level functions

Value

Matrix of test-statistics and p-values

Author(s)

Klaus K. Holst

See Also

compare, equivalence

Examples

1
2
3
4
5
6
7
m <- lvm();
regression(m) <- c(y1,y2,y3) ~ eta; latent(m) <- ~eta
regression(m) <- eta ~ x
m0 <- m; regression(m0) <- y2 ~ x
dd <- sim(m0,100)[,manifest(m0)]
e <- estimate(m,dd);
modelsearch(e)

lava documentation built on May 2, 2019, 4:49 p.m.