Skip to content

Commit

Permalink
Bug fix to display default table note in etable (#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsliwka authored Oct 22, 2024
1 parent 81a96b6 commit 09a6a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfixest/report/summarize.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def etable(
res_all.columns = pd.MultiIndex.from_arrays(cindex)

# Generate generic note string if none is provided
if notes is None:
if notes == "":
if type == "gt":
notes = (
f"Significance levels: * p < {signif_code[2]}, ** p < {signif_code[1]}, *** p < {signif_code[0]}. "
Expand Down

0 comments on commit 09a6a5e

Please sign in to comment.