lavaangui {lavaangui} | R Documentation |
Start lavaangui Shiny Application
Description
The lavaangui
function launches the lavaangui Shiny application.
Usage
lavaangui(fit = NULL)
Arguments
fit |
A lavaan model, as returned by the |
Details
Currently, multiple-group models are not supported. However, you can create an
interactive plot of those models using plot_lavaan
Value
nothing
Examples
# Without importing lavaan model
lavaangui()
# Importing a lavaan model
library(lavaan)
model <- "
visual =~ x1 + loadingx2*x2 + x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9
"
fit <- cfa(model, data = HolzingerSwineford1939)
lavaangui(fit)
[Package lavaangui version 0.2.0 Index]