to_latex: creates a .tex a table from a data.frame

to_latexR Documentation

creates a .tex a table from a data.frame

Description

to_latex reads a data.frme an dgenerates a .tex table, aiming to replicate the method of tablegenerator.com

Usage

to_latex(df, file, caption = "My table", label = "tab:df")

Arguments

df

data.frame with three column.

file

Character, name of new .tex file

caption

Character caption of table

label

Character, label of table

Value

a text file with extension .tex.

See Also

vein_notes long_to_wide

Other helpers: colplot(), dmonth(), wide_to_long()

Examples

## Not run: 
df <- data.frame(pollutant = rep(c("CO", "propadiene", "NO2"), 10),
                 emission = vein::Emissions(1:30),
                 region = rep(letters[1:2], 15))
df
long_to_wide(df)
(df2 <- long_to_wide(df, column_fixed = "region"))
to_latex(df2)
to_latex(long_to_wide(df, column_fixed = "region"),
file = paste0(tempfile(), ".tex"))

## End(Not run)

ibarraespinosa/vein documentation built on April 13, 2024, 8:51 p.m.