Skip to content

Commit

Permalink
Merge e4e7777 into 0376f69
Browse files Browse the repository at this point in the history
  • Loading branch information
bashtage committed Sep 29, 2020
2 parents 0376f69 + e4e7777 commit 652b36c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions statsmodels/tsa/holtwinters/results.py
Expand Up @@ -369,6 +369,8 @@ def summary(self):
def _fmt(x):
abs_x = np.abs(x)
scale = 1
if np.isnan(x):
return " " * 20
if abs_x != 0:
scale = int(np.log10(abs_x))
if scale > 4 or scale < -3:
Expand Down

0 comments on commit 652b36c

Please sign in to comment.