save_png {lavaanPlot} | R Documentation |
Saves a plot as a png
Description
Saves a plot as a png
Usage
save_png(plot, path, width = NULL, height = NULL)
Arguments
plot |
plot object created by |
path |
filename to save the image |
width |
width of image in pixels, NULL for default |
height |
height of image, NULL for default |
Value
no return value saves plot as png
Examples
library(lavaan)
model <- 'mpg ~ cyl + disp + hp
qsec ~ disp + hp + wt'
fit <- sem(model, data = mtcars)
pl <- lavaanPlot(model = fit)
## Not run:
save_png(pl, "plot.png")
## End(Not run)
[Package lavaanPlot version 0.8.1 Index]