Learn R Programming

kutils (version 1.69)

testtable: Test viewer for tex tables

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

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.

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataLab