# ANN: RegressionTables.jl produces publication-quality regression tables

**URL:** https://discourse.julialang.org/t/ann-regressiontables-jl-produces-publication-quality-regression-tables/7516
**Category:** Data
**Tags:** announcement
**Created:** [December 5, 2017, 4:02am UTC](https://discourse.julialang.org/t/ann-regressiontables-jl-produces-publication-quality-regression-tables/7516 "2017-12-05T04:02:37Z")
**Posts on this page:** 2
**Page:** 3

<div class="post-metadata">

### Author: ![Yifan\_Liu](https://avatars.discourse-cdn.com/v4/letter/y/4da419/32.png) [@Yifan\_Liu](https://discourse.julialang.org/u/Yifan_Liu)
#### Post date: [June 18, 2020, 3:18am UTC](https://discourse.julialang.org/t/ann-regressiontables-jl-produces-publication-quality-regression-tables/7516/41 "2020-06-18T03:18:38Z")

</div>

For the Latex output of regression results, how to show the t values instead of standard errors in parentheses?

---

<div class="post-metadata">

### Author: ![jmboehm](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jmboehm/32/2263_2.png) [@jmboehm](https://discourse.julialang.org/u/jmboehm)
#### Post date: [June 19, 2020, 7:13pm UTC](https://discourse.julialang.org/t/ann-regressiontables-jl-produces-publication-quality-regression-tables/7516/42 "2020-06-19T19:13:27Z")

</div>

> [@Yifan\_Liu](#):
>
> For the Latex output of regression results, how to show the t values instead of standard errors in parentheses?

From the readme:

> [@](#):
>
> `below_statistic` is a `Symbol` that describes a statistic that should be shown below each point estimate. Recognized values are `:blank` , `:se` , and `:tstat` . Defaults to `:se` .

Hence, from the example

```julia
regtable(rr1,rr2,rr3,rr4; renderSettings = latexOutput(), below_statistic = :tstat)

```

should generate what you are looking for.

[Previous page](https://discourse.julialang.org/t/ann-regressiontables-jl-produces-publication-quality-regression-tables/7516.md?page=2)
