File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -1139,12 +1139,17 @@ def summary(self) -> None:
1139
1139
Print text output summarising the results
1140
1140
"""
1141
1141
1142
- print (f"{ self .expt_type :=^80} " )
1143
- print (f"Formula: { self .formula } " )
1144
- print (f"Running variable: { self .running_variable_name } " )
1145
- print (f"Kink point on running variable: { self .kink_point } " )
1146
- print ("\n Results:" )
1147
- print (f"Change in slope at kink point = { self .gradient_change .mean ():.2f} " )
1142
+ print (
1143
+ f"""
1144
+ { self .expt_type :=^80}
1145
+ Formula: { self .formula }
1146
+ Running variable: { self .running_variable_name }
1147
+ Kink point on running variable: { self .kink_point }
1148
+
1149
+ Results:
1150
+ Change in slope at kink point = { self .gradient_change .mean ():.2f}
1151
+ """
1152
+ )
1148
1153
self .print_coefficients ()
1149
1154
1150
1155
You can’t perform that action at this time.
0 commit comments