You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/test_fiscal.py
+16-6Lines changed: 16 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,9 @@
27
27
D_f1=df["D_f1"].values
28
28
D_f2=df["D_f2"].values
29
29
D_f3=df["D_f3"].values
30
-
r_gov1=np.ones_like(df["D1"].values) *0.05-0.02# 0.02 is the default r_gov_shift parameter and the default scale parameter is 1.0, meaning r_gov1 = 0.05 - 0.02 = 0.03
30
+
r_gov1= (
31
+
np.ones_like(df["D1"].values) *0.05-0.02
32
+
) # 0.02 is the default r_gov_shift parameter and the default scale parameter is 1.0, meaning r_gov1 = 0.05 - 0.02 = 0.03
0 commit comments