I am using semPlot and I have first-order and second-order latent factors. Is it possible for those to have different size? I would like for second-order factors to be bigger than the first-order factors.
Also, I would like to show residuals but not factor variances. Is is possible?
Thank you.
Currently I am using:
` semPaths(fit2b, what = "std", # this argument controls what the color of edges represent. In this case, standardized parameters whatLabels = "est", # This argument controls what the edge labels represent. In this case, parameter estimates style = "lisrel", # This will plot residuals as arrows, closer to what we use in class residScale = 8, # This makes the residuals larger theme = "colorblind", # qgraph colorblind friendly theme nCharNodes = 0, # Setting this to 0 disables abbreviation of nodes
reorder = FALSE, # This disables the default reordering
legend.cex = 0.5, # Makes the legend smaller
rotation = 2, # Rotates the plot
layout = "tree2", # tree layout options are "tree", "tree2", and "tree3"
cardinal = "lat cov", # This makes the latent covariances connet at a cardinal center point
curvePivot = TRUE, # Changes curve into rounded straight lines
sizeMan = 2, # Size of manifest variables
sizeLat = 5.5, # Size of latent variables
mar = c(2,5,2,5.5), # Figure margins
residuals=TRUE
) `