Learn R Programming

gimme (version 0.9.3)

indiv.search: Individual-level search. Used in gimmeSEM, aggSEM, indSEM.

Description

Individual-level search. Used in gimmeSEM, aggSEM, indSEM.

Usage

indiv.search(
  dat,
  grp,
  ind,
  ind_cutoff = NULL,
  ind_z_cutoff = 1.96,
  rmsea_cutoff = 0.05,
  srmr_cutoff = 0.05,
  nnfi_cutoff = 0.95,
  cfi_cutoff = 0.95,
  n_excellent = 2
)

Value

Lists associated with coefficients, fit indices, etc.

Arguments

dat

A list containing information created in setup().

grp

A list containing group-level information. NULL in aggSEM and indSEM.

ind

A list containing individual- and (potentially) subgroup-level information.

ind_cutoff

Chi square cutoff, .05 level adjusted for multiple tests.

ind_z_cutoff

Z score cutoff, .05 level adjusted for multiple tests.

rmsea_cutoff

Cutoff for RMSEA for an individual model(default is .05; must be between 0.0 and 1.0).

srmr_cutoff

Cutoff for SRMR for an individual model (default is .05; must be between 0.0 and 1.0).

nnfi_cutoff

Cutoff for NNFI for an individual model (default is .95; must be between 0.0 and 1.0).

cfi_cutoff

Cutoff for CFI for an individual model (default is .95; must be between 0.0 and 1.0).

n_excellent

Number of fit indices needed to surpass their cutoffs for an individual model to be considered excellent. Default is 2. Max is 4.