R/lavaan.diagram.R

"lavaan.diagram" <- 
function(fit,main,e.size=.1,...) {
if (is.null(fit@Model@GLIST$beta)) {model <- "cfa"} else {model <- "sem"}
if(missing(main)) {if(model =="cfa") { main="Confirmatory structure" } else {main = "Structural model"}
                       }
        mimic <- fit@Model@fixed.x
        
       if(!mimic) {#the normal case, either a cfa or a sem
        fx=fit@Model@GLIST$lambda           #the x and y loadings 
       #but,  if it is a sem, we need to find the y variables
       
       # colnames(fx) <- fit@Model@dimNames$lambda[[2]]
       colnames(fx) <- fit@Model@dimNames[[1]][[2]]
       rownames(fx) <- fit@Model@dimNames[[1]][[1]]
        if(model=="sem") {Phi <-  fit@Model@GLIST$beta} else {  Phi <-  fit@Model@GLIST$psi}
                  Rx <- fit@Model@GLIST$theta
                  v.labels <-fit@Model@dimNames[[1]][[1]]
              
        #either a sem or a cfa
        
        if(model == "sem" ) {
        x.f <- unique(fit@ParTable$rhs[fit @ParTable$op == "~"])
        y.f <- unique(fit@ParTable$lhs[fit @ParTable$op == "~"])
        x.f <- x.f[!x.f %in% y.f]

        #now, since this is a sem or   we need to shrink fx and create fy
       # temp <- fx
        x.vars <- fit@ParTable$lhs[fit @ParTable$op == "=~"] %in% x.f
        y.vars <- !fit@ParTable$lhs[fit @ParTable$op == "=~"] %in% x.f
        fy <- fx[y.vars,!colnames(fx) %in% x.f,drop=FALSE]
        fx <- fx[x.vars,x.f,drop=FALSE]
        Ry <- Rx[y.vars,y.vars]
        }
        } else {
         model <- "mimic"
         }
       

switch(model,
 # if(model=="cfa") {                
	cfa= {structure.diagram(fx=fx,Phi=Phi, Rx=Rx,labels=v.labels,main=main,e.size=e.size,...)},
	mimic = {#multiple indicators, multiple causes
	    y.vars <- fit@Model@x.user.idx[[1]]   #these are all the variables as numbers

        nx  <- fit@Model@ov.x.dummy.lv.idx[[1]]
        fy <- as.matrix(fit@Model@GLIST$lambda[y.vars,-nx],drop=FALSE)
        fx <- as.matrix(fit@Model@GLIST$beta[-nx,nx],drop=FALSE)
        colnames(fy) <- fit@Model@dimNames[[1]][[2]][-nx]
       rownames(fy) <- fit@Model@dimNames[[1]][[1]][y.vars]
       rownames(fx) <- fit@Model@dimNames[[1]][[2]][-nx]
       colnames(fx) <- fit@Model@dimNames[[1]][[1]][-y.vars]
        # v.labels <-fit@Model@dimNames[[1]][[1]]
        v.labels <- c(rownames(fx),rownames(fy))
         Rx <- fit@Model@GLIST$theta
         Phi <- fit@Model@GLIST$beta
		fx <- t(fx)
		structure.diagram(fx=fx,fy=fy,Rx=Rx,main=main,e.size=e.size,...)},
		
		
	sem = { #a sem model
		Phi <-  (fit@Model@GLIST$beta)


#now draw the sem diagram
	structure.diagram(fx=fx,Phi=Phi,fy=fy, Rx=Rx,Ry=Ry,
	labels=v.labels,main=main,e.size=e.size,...) }
)   #end switch
}  #end lavaan diagram

#modified 11/6/14 to draw the regression paths
#modified 11/14/18 to properly do mimic models
#modified 11/11/23 to draw sem diagrams 
#how to figure out the lavaan object
#   fit@ParTable$op == "~"   
#   fit@ParTable$rhs     
#    fit@ParTable$lhs
#  fit@ParTable$lhs[fit @ParTable$op == "~"]   #the y factors
#  fit@ParTable$rhs[fit @ParTable$op == "~"]    #the regression predictors
#fit@ParTable$rhs[fit@ParTable$op == "=~"]     #the variables
#fit@ParTable$lhs[fit @ParTable$op == "=~"]     #the factors


#created August 17, 2017 to allow sem.diagrams and graphs from sem output 
"sem.diagram" <- function(fit,main="A SEM from the sem package",...) {
  nvar <- ncol(fit$S)
  var.names <- fit$var.names
  tot.var <- ncol(fit$A)
  num.factors <- length(var.names) - nvar
  fx <- fit$A[1:nvar,(nvar+1):ncol(fit$A)]
  Phi <- fit$P[(nvar+1):tot.var,(nvar+1):tot.var]
 structure.diagram(fx,Phi,main=main,...)
 }
 

"sem.graph" <- function(fit,out.file=NULL,main="A SEM from the sem package",...) {
  nvar <- ncol(fit$S)
  var.names <- fit$var.names
  tot.var <- ncol(fit$A)
  num.factors <- length(var.names) - nvar
  fx <- fit$A[1:nvar,(nvar+1):ncol(fit$A)]
  Phi <- fit$P[(nvar+1):tot.var,(nvar+1):tot.var]
 structure.graph(fx,Phi,out.file=out.file,title=main,...)
 }
  

Try the psych package in your browser

Any scripts or data that you put into this service are public.

psych documentation built on June 27, 2024, 5:07 p.m.