Learn R Programming

sem (version 0.4-1)

standardized.coefficients: Standardized Coefficients for Structural Equation Models

Description

These functions calculate standardized regression coefficients for structural equation models. The function std.coef is simply an abbreviation for standardized.coefficients.

Usage

standardized.coefficients(object, digits=5)

std.coef(...)

Arguments

object
an object of class sem returned by the sem function.
digits
number of digits for printed output.
...
arguments to pass to standardized.coefficients.

Value

  • Returns a data frame with the standardized coefficients, labelled both by parameter names and by arrows in the path diagram for the model.

References

Bollen, K. A. (1989) Structural Equations With Latent Variables. Wiley.

See Also

sem

Examples

Run this code
# ------------- assumes that Duncan, Haller and Portes peer-influences model
# -------------     has been fit and is in sem.dhp
    standardized.coefficients(sem.dhp) 

##            Std. Estimate                     
##               0.766718 ROccAsp <--- RGenAsp
##    lam21      0.814772  REdAsp <--- RGenAsp
##               0.829941 FOccAsp <--- FGenAsp
##    lam42      0.771621  FEdAsp <--- FGenAsp
##    gam11      0.210273 RGenAsp <--- RParAsp
##    gam12      0.325604     RGenAsp <--- RIQ
##    gam13      0.284853    RGenAsp <--- RSES
##    gam14      0.093693    RGenAsp <--- FSES
##    gam23      0.074559    FGenAsp <--- RSES
##    gam24      0.275758    FGenAsp <--- FSES
##    gam25      0.420549     FGenAsp <--- FIQ
##    gam26      0.192218 FGenAsp <--- FParAsp
##    beta12     0.199437 RGenAsp <--- FGenAsp
##    beta21     0.217562 FGenAsp <--- RGenAsp

Run the code above in your browser using DataLab