Skip to content

Commit

Permalink
fix: f-string bug
Browse files Browse the repository at this point in the history
  • Loading branch information
huangziwei committed Dec 18, 2024
1 parent 5158962 commit 0554f8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycircstat2/regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def summary(self):
else np.nan
)
print(
f"α{"":<5} {alpha:<12.5f} {se_alpha:<12.5f} {t_value_alpha:<10.2f} {p_value_alpha:<12.5f}{significance_code(p_value_alpha)}"
f"α{'':<5} {alpha:<12.5f} {se_alpha:<12.5f} {t_value_alpha:<10.2f} {p_value_alpha:<12.5f}{significance_code(p_value_alpha)}"
)
for i, coef in enumerate(self.result["gamma"]):
# Placeholder for standard error and p-values
Expand Down

0 comments on commit 0554f8d

Please sign in to comment.