We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 223550e commit 46a4a03Copy full SHA for 46a4a03
code/utils/comparison_utils.py
@@ -98,9 +98,8 @@ def _return_report(self):
98
problematic_boost_ids = boost_id_counts[boost_id_counts > 1].index.tolist()
99
100
if problematic_boost_ids:
101
- logging.critical(f"Found boost_id(s) with multiple lab_ids: {', '.join(problematic_boost_ids)}. "
+ logging.critical(f"Found boost_id(s) with multiple lab_ids: {', '.join(map(str, problematic_boost_ids))}. "
102
"These entries will be removed from processing.")
103
- # Remove rows with these problematic boost_ids from the dataframe.
104
df = df[~df['boost_id'].isin(problematic_boost_ids)]
105
106
# Identify and separate duplicate rows based on any column.
0 commit comments