There was an error while loading. Please reload this page.
2 parents 2edca7e + 1dfe1f1 commit c032bf3Copy full SHA for c032bf3
1 file changed
osl/report/src_report.py
@@ -287,6 +287,7 @@ def gen_html_summary(reportdir, logsdir=None):
287
flip_table["Session ID"] = [subject_data[i]["fif_id"] for i in range(len(subject_data))]
288
flip_table["Correlation before flipping "] = np.round(metrics[:,0], decimals=3)
289
flip_table["Correlation after flipping "] = np.round(metrics[:,1:].max(axis=1), decimals=3)
290
+ flip_table["Correlation change (after-before) "] = np.round(flip_table["Correlation after flipping "]-flip_table["Correlation before flipping "], decimals=3)
291
flip_table.index += 1 # Start indexing from 1
292
data['signflip_table'] = flip_table.to_html(classes="display", table_id="signflip_tbl")
293
0 commit comments