TexTables.jl icon indicating copy to clipboard operation
TexTables.jl copied to clipboard

Publication quality regression and statistical tables

Results 6 TexTables.jl issues
Sort by recently updated
recently updated
newest added

Some regression coefficients cannot have a standard error in the usual sense but should come with intervals instead. Is it possible to construct those in place of SEs with TexTables?

enhancement

It seems like the output mixes `\toprule` and `\bottomrule` (booktab commands) with `\hline` (standard tabular command): ```julia using TexTables using RDatasets neuro = RDatasets.dataset("boot", "neuro") summarize(neuro) |> to_tex |> print...

good first issue

This is a little tricky since each row needs an index. This can be solved by indexing by row number, but I think a lot of people who want this...

It would be nice to have an option like the following: ```julia to_tex(table, border=:double) ``` Where the top and bottom borders of the table (which are printed as `\toprule` and...

enhancement
good first issue

Would it be possible to include a capability to choose the order of rows in regression tables (or at least move certain variables to the top)? For example, if a...

The current latex tables for export look terrible because of the inclusion of a toprule. While there are some tables for which this is appropriate, it should not be the...