Learn R Programming

semPlot (version 1.0.0)

semPlot-tricks: Tricks that can be used in semPlot.

Description

Use a list contaning several SEM objects (from any source) to plot them as the same model. Also, the '+' operator can be used to combine two models, including in calls in semPaths and semPlotModel. See examples.

Usage

## S3 method for class 'semPlotModel':
+(x,y)
## S3 method for class 'list':
semPlotModel(object, \dots)

Arguments

x
A "semPlotModel" object
y
A "semPlotModel" object
object
An object contaning the result of a SEM or GLM analysis, or a string contaning the file path to the output file of a sEM program.
...
Not used.

See Also

semPlotModel semPaths semCors

Examples

Run this code
# A silly dataset:
A <- rnorm(100)
B <- A + rnorm(100)
C <- B + rnorm(100)
DF <- data.frame(A,B,C)

# Two regressions:
res1 <- lm(B ~ C, data = DF)
res2 <- lm(A ~ B + C, data = DF)

# Plot both in the same path diagram in two ways:
semPaths(res1 + res2, "model", "est", intercepts=FALSE)
semPaths(list(res1,res2), "model", "est", intercepts=FALSE)

Run the code above in your browser using DataLab