testtable: Test viewer for tex tables

Description Usage Arguments Value Author(s) Examples

View source: R/semTable.R

Description

Creates a small latex template file that includes a table file. Compiles it, then displays in viewer if system has xdg-open settings.

Usage

1
testtable(tablefile, dir, tmpfn = "tmp.tex")

Arguments

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

Value

LaTeX log, returned from shell function.

Author(s)

Paul Johnson <pauljohn@ku.edu>

Examples

 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)

semTable documentation built on April 30, 2020, 1:05 a.m.