Displaying 5 results from an estimated 5 matches for "dem60".
2010 May 19
0
New package: `lavaan' for latent variable analysis (including structural equation modeling)
...'lavaan model syntax' looks like,
below is the full R code for fitting a SEM model:
## begin R Code ##
library(lavaan)
# The industrialization and Political Democracy Example
# Bollen (1989), page 332
model <- '
# latent variable definitions
ind60 =~ x1 + x2 + x3
dem60 =~ y1 + y2 + y3 + y4
dem65 =~ y5 + y6 + y7 + y8
# regressions
dem60 ~ ind60
dem65 ~ ind60 + dem60
# residual correlations
y1 ~~ y5
y2 ~~ y4 + y6
y3 ~~ y7
y4 ~~ y8
y6 ~~ y8
'
fit <- sem(model, data=PoliticalDemocracy)
summary(fit, fit.measures...
2011 Apr 27
0
lavaan version 0.4-8
...e 'lavaan model syntax' looks like,
below is the full R code for fitting a SEM model:
## begin R Code ##
library(lavaan)
# The industrialization and Political Democracy Example
# Bollen (1989), page 332
model <- '
# latent variable definitions
ind60 =~ x1 + x2 + x3
dem60 =~ y1 + y2 + y3 + y4
dem65 =~ y5 + y6 + y7 + y8
# regressions
dem60 ~ ind60
dem65 ~ ind60 + dem60
# residual correlations
y1 ~~ y5
y2 ~~ y4 + y6
y3 ~~ y7
y4 ~~ y8
y6 ~~ y8
'
fit <- sem(model, data=PoliticalDemocracy)
summary(fit, fit...
2010 May 19
0
New package: `lavaan' for latent variable analysis (including structural equation modeling)
...'lavaan model syntax' looks like,
below is the full R code for fitting a SEM model:
## begin R Code ##
library(lavaan)
# The industrialization and Political Democracy Example
# Bollen (1989), page 332
model <- '
# latent variable definitions
ind60 =~ x1 + x2 + x3
dem60 =~ y1 + y2 + y3 + y4
dem65 =~ y5 + y6 + y7 + y8
# regressions
dem60 ~ ind60
dem65 ~ ind60 + dem60
# residual correlations
y1 ~~ y5
y2 ~~ y4 + y6
y3 ~~ y7
y4 ~~ y8
y6 ~~ y8
'
fit <- sem(model, data=PoliticalDemocracy)
summary(fit, fit.measures...
2011 Apr 27
0
lavaan version 0.4-8
...e 'lavaan model syntax' looks like,
below is the full R code for fitting a SEM model:
## begin R Code ##
library(lavaan)
# The industrialization and Political Democracy Example
# Bollen (1989), page 332
model <- '
# latent variable definitions
ind60 =~ x1 + x2 + x3
dem60 =~ y1 + y2 + y3 + y4
dem65 =~ y5 + y6 + y7 + y8
# regressions
dem60 ~ ind60
dem65 ~ ind60 + dem60
# residual correlations
y1 ~~ y5
y2 ~~ y4 + y6
y3 ~~ y7
y4 ~~ y8
y6 ~~ y8
'
fit <- sem(model, data=PoliticalDemocracy)
summary(fit, fit...
[R-pkgs] New package: `lavaan' for latent variable analysis (including structural equation modeling)
2010 May 24
2
[R-pkgs] New package: `lavaan' for latent variable analysis (including structural equation modeling)
...full R code for fitting a SEM model:
>
> ## begin R Code ##
>
> library(lavaan)
>
> # The industrialization and Political Democracy Example
> # Bollen (1989), page 332
>
> model <- '
> # latent variable definitions
> ind60 =~ x1 + x2 + x3
> dem60 =~ y1 + y2 + y3 + y4
> dem65 =~ y5 + y6 + y7 + y8
>
> # regressions
> dem60 ~ ind60
> dem65 ~ ind60 + dem60
>
> # residual correlations
> y1 ~~ y5
> y2 ~~ y4 + y6
> y3 ~~ y7
> y4 ~~ y8
> y6 ~~ y8
> '
>
> fit &l...