File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -187,14 +187,12 @@ def create_heat_map(
187
187
table_data = get_image_tables_from_fliprate_table (fliprate_table , top_identifiers_ewm )
188
188
189
189
if grouping_option == "days" :
190
- filename = f"{ window_size } day_flip_rate_top{ top_n } .png"
191
190
title_ewm = (
192
191
f"Top { top_n } of tests with highest latest window exponentially weighted moving average fliprate score "
193
192
f"- alpha (smoothing factor) = { EWM_ALPHA } - last { window_size * window_count } days of data"
194
193
)
195
194
filename_ewm = f"{ window_size } day_flip_rate_ewm_top{ top_n } .png"
196
195
else :
197
- filename = f"{ window_size } runs_flip_rate_top{ top_n } .png"
198
196
title_ewm = (
199
197
f"Top { top_n } of tests with highest latest window exponentially weighted moving average fliprate score - "
200
198
f"alpha (smoothing factor) = { EWM_ALPHA } - { window_size } last runs fliprate and "
@@ -203,7 +201,7 @@ def create_heat_map(
203
201
filename_ewm = f"{ window_size } runs_flip_rate_ewm_top{ top_n } .png"
204
202
205
203
generate_image (table_data , title_ewm , filename_ewm )
206
- logging .info ("%s and %s generated." , filename , filename_ewm )
204
+ logging .info (f" generated { filename_ewm } " )
207
205
208
206
209
207
def main ():
You can’t perform that action at this time.
0 commit comments