Learn R Programming

sem (version 2.1-0)

bootSem: Bootstrap a Structural Equation Model

Description

Bootstraps a structural equation model in an sem object (as returned by the sem function).

Usage

bootSem(model, R=100, cov=cov, data=model$data, ...)

## S3 method for class 'bootsem':
print(x, digits=getOption("digits"), ...)

## S3 method for class 'bootsem':
summary(object,
    type=c("perc", "bca", "norm", "basic", "none"), level=0.95, ...)

Arguments

model
an sem object, produced by the sem function.
R
the number of bootstrap replications; the default is 100, which should be enough for computing standard errors, but not confidence intervals (except for the normal-theory intervals).
cov
a function to compute the input covariance or moment matrix; the default is cov. Use cor if the model is fit to the correlation matrix. The funct
data
a data frame or numeric matrix containing the data to which the model was fit; note that the original observations are required, not just the covariance matrix of the observed variables in the model. The default is the data set stored in the
x, object
an object of class bootsem.
digits
controls the number of digits to print.
type
type of bootstrapped confidence intervals to compute; the default is "perc" (percentile); see boot.ci for details.
level
level for confidence intervals; default is 0.95.
...
in bootSem, arguments to be passed to sem; otherwise ignored.

Value

  • bootSem returns an object of class bootsem, which inherits from class boot, supported by the boot package. The returned object contains the following components:
  • t0the estimated parameters in the model fit to the original data set.
  • ta matrix containing the bootstrapped estimates, one bootstrap replication per row.
  • datathe data frame containing the data to which the model was fit.
  • seedthe value of .Random.seed when bootSem was called.
  • statisticthe function used to produce the bootstrap replications; this is always the local function refit from bootSem.
  • simalways set to "ordinary"; see the documentation for the boot function.
  • stypealways set to "i"; see the documentation for the boot function.
  • callthe call of the bootSem function.
  • strataalways a vector of ones.

Details

bootSem implements the nonparametric bootstrap, assuming an independent random sample. Convergence failures in the bootstrap resamples are discarded (and a warning printed); 10 consecutive convergence failures result in an error. You can use the boot function in the boot package for more complex sampling schemes and additional options. Bootstrapping is implemented by resampling the observations in data, recalculating the input covariance matrix with cov, and refitting the model with sem, using the parameter estimates from the original sample as start-values. Warning: the bootstrapping process can be very time-consuming.

References

Davison, A. C., and Hinkley, D. V. (1997) Bootstrap Methods and their Application. Cambridge. Efron, B., and Tibshirani, R. J. (1993) An Introduction to the Bootstrap. Chapman and Hall.

See Also

boot, sem

Examples

Run this code
# A simple confirmatory factor-analysis model using polychoric correlations.
#  The polycor package is required for the hetcor function.

library(polycor)

# The following function returns correlations computed by hetcor,
#   and is used for the bootstrapping.

hcor <- function(data) hetcor(data, std.err=FALSE)$correlations

model.cnes <- specifyModel()
F -> MBSA2, lam1
F -> MBSA7, lam2
F -> MBSA8, lam3
F -> MBSA9, lam4
F <-> F, NA, 1
MBSA2 <-> MBSA2, the1
MBSA7 <-> MBSA7, the2
MBSA8 <-> MBSA8, the3
MBSA9 <-> MBSA9, the4

R.cnes <- hcor(CNES)

sem.cnes <- sem(model.cnes, R.cnes, N=1529)
summary(sem.cnes)

#  Note: this can take a couple of minutes:

system.time(boot.cnes <- bootSem(sem.cnes, R=100, cov=hcor, data=CNES))
summary(boot.cnes, type="norm")  
# cf., standard errors to those computed by summary(sem.cnes)

Run the code above in your browser using DataLab