Description Usage Arguments Value Author(s) Examples
Creates a small latex template file that includes a table
file. Compiles it, then displays in viewer if system has
xdg-open
settings.
1 |
tablefile |
The base name of the table file |
dir |
Directory where table is saved, same will be used for build. |
tmpfn |
File name to be used by example document |
LaTeX log, returned from shell function.
Paul Johnson <pauljohn@ku.edu>
1 2 3 4 5 6 7 8 9 10 11 12 | require(lavaan)
tempdir <- tempdir()
HS.model <- ' visual =~ x1 + x2 + x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9'
fit1 <- cfa(HS.model, data = HolzingerSwineford1939,
std.lv = TRUE, meanstructure = TRUE)
fit1.t <- semTable(fit1, fits = c("chisq", "rmsea"),
columns = c("estsestars", "rsquare"),
columnLabels = c("estsestars" = "Est(SE)"),
file = file.path(tempdir, "fit1.t"))
if (interactive()) testtable("fit1.t", tempdir)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.