Learn R Programming

lavaanPlot (version 0.8.1)

save_png: Saves a plot as a png

Description

Saves a plot as a png

Usage

save_png(plot, path, width = NULL, height = NULL)

Value

no return value saves plot as png

Arguments

plot

plot object created by lavaanPlot

path

filename to save the image

width

width of image in pixels, NULL for default

height

height of image, NULL for default

Examples

Run this code
library(lavaan)
model <- 'mpg ~ cyl + disp + hp
          qsec ~ disp + hp + wt'
fit <- sem(model, data = mtcars)
pl <- lavaanPlot(model = fit)
if (FALSE) {
save_png(pl, "plot.png")
}

Run the code above in your browser using DataLab