@@ -64,7 +64,7 @@ def print_coefficients(self, round_to=None) -> None:
64
64
Prints the model coefficients
65
65
66
66
:param round_to:
67
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
67
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
68
68
69
69
Example
70
70
--------
@@ -234,7 +234,7 @@ def plot(self, counterfactual_label="Counterfactual", round_to=None, **kwargs):
234
234
Plot the results
235
235
236
236
:param round_to:
237
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
237
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
238
238
"""
239
239
fig , ax = plt .subplots (3 , 1 , sharex = True , figsize = (7 , 8 ))
240
240
@@ -339,7 +339,7 @@ def summary(self, round_to=None) -> None:
339
339
Print text output summarising the results
340
340
341
341
:param round_to:
342
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
342
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
343
343
"""
344
344
345
345
print (f"{ self .expt_type :=^80} " )
@@ -426,7 +426,7 @@ def plot(self, plot_predictors=False, **kwargs):
426
426
"""Plot the results
427
427
428
428
:param round_to:
429
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
429
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
430
430
"""
431
431
fig , ax = super ().plot (counterfactual_label = "Synthetic control" , ** kwargs )
432
432
if plot_predictors :
@@ -595,7 +595,7 @@ def plot(self, round_to=None):
595
595
"""Plot the results.
596
596
597
597
:param round_to:
598
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
598
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
599
599
"""
600
600
fig , ax = plt .subplots ()
601
601
@@ -739,7 +739,7 @@ def summary(self, round_to=None) -> None:
739
739
Print text output summarising the results.
740
740
741
741
:param round_to:
742
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
742
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
743
743
"""
744
744
745
745
print (f"{ self .expt_type :=^80} " )
@@ -902,7 +902,7 @@ def plot(self, round_to=None):
902
902
Plot the results
903
903
904
904
:param round_to:
905
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
905
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
906
906
"""
907
907
fig , ax = plt .subplots ()
908
908
# Plot raw data
@@ -956,7 +956,7 @@ def summary(self, round_to: None) -> None:
956
956
Print text output summarising the results
957
957
958
958
:param round_to:
959
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
959
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
960
960
"""
961
961
962
962
print (f"{ self .expt_type :=^80} " )
@@ -1122,7 +1122,7 @@ def plot(self, round_to=None):
1122
1122
Plot the results
1123
1123
1124
1124
:param round_to:
1125
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
1125
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
1126
1126
"""
1127
1127
fig , ax = plt .subplots ()
1128
1128
# Plot raw data
@@ -1176,7 +1176,7 @@ def summary(self, round_to=None) -> None:
1176
1176
Print text output summarising the results
1177
1177
1178
1178
:param round_to:
1179
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
1179
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
1180
1180
"""
1181
1181
1182
1182
print (
@@ -1318,7 +1318,7 @@ def plot(self, round_to=None):
1318
1318
"""Plot the results
1319
1319
1320
1320
:param round_to:
1321
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
1321
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
1322
1322
"""
1323
1323
fig , ax = plt .subplots (
1324
1324
2 , 1 , figsize = (7 , 9 ), gridspec_kw = {"height_ratios" : [3 , 1 ]}
@@ -1384,7 +1384,7 @@ def summary(self, round_to=None) -> None:
1384
1384
Print text output summarising the results
1385
1385
1386
1386
:param round_to:
1387
- Number of decimals used to round results. Defaults to 2. Use "none " to return raw numbers.
1387
+ Number of decimals used to round results. Defaults to 2. Use "None " to return raw numbers.
1388
1388
"""
1389
1389
1390
1390
print (f"{ self .expt_type :=^80} " )
0 commit comments