Regression table star level

Hello,
I’m new to Julia and currently conducting several IV regressions. I’d like to report the results using the following code:

regtable(ivmodel1, ivmodel2, ivmodel3, render = LatexTable(), digits = 5)

In economics, it’s common to display significance stars for p-values under 0.1. However, I’ve noticed that the output from this code does not include stars at the 10% level.

Is there a way to adjust the significance star thresholds in the regtable function?

Sincerely,
JU.

Hello and welcome! I think this other Discourse post answers your issue? RegressionTables.jl: How to Change Star Precision - General Usage - Julia Programming Language. So, above your regtable call, I think you redefine the RegressionTables.default_breaks(::AbstractLatex) method to return, say, [0.05, 0.1] or just [0.1].

1 Like

It Worked!

Thank you very much!

1 Like