search for: ind60

Displaying 5 results from an estimated 5 matches for "ind60".

Did you mean: ind6
2010 May 19
0
New package: `lavaan' for latent variable analysis (including structural equation modeling)
...first impression of how the '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=PoliticalDemocrac...
2011 Apr 27
0
lavaan version 0.4-8
...a first impression of how the '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=Politic...
2010 May 19
0
New package: `lavaan' for latent variable analysis (including structural equation modeling)
...first impression of how the '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=PoliticalDemocrac...
2011 Apr 27
0
lavaan version 0.4-8
...a first impression of how the '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=Politic...
2010 May 24
2
[R-pkgs] New package: `lavaan' for latent variable analysis (including structural equation modeling)
...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 ~~...