Shane
commited on
Commit
·
78b8fe9
1
Parent(s):
63c5ebf
fixed bug
Browse files- src/utils.py +1 -1
src/utils.py
CHANGED
@@ -150,7 +150,7 @@ def sort_by_category(df, category):
|
|
150 |
cols = list(new_df.columns)
|
151 |
cols.insert(3, cols.pop(cols.index(col_confi)))
|
152 |
new_df = new_df.loc[:, cols]
|
153 |
-
new_df = new_df.rename(columns={
|
154 |
|
155 |
|
156 |
# drop all ranking and confidence interval
|
|
|
150 |
cols = list(new_df.columns)
|
151 |
cols.insert(3, cols.pop(cols.index(col_confi)))
|
152 |
new_df = new_df.loc[:, cols]
|
153 |
+
new_df = new_df.rename(columns={col_confi: "95% CI"})
|
154 |
|
155 |
|
156 |
# drop all ranking and confidence interval
|