Spaces:
Sleeping
Sleeping
Update appStore/vulnerability_analysis.py
Browse files
appStore/vulnerability_analysis.py
CHANGED
@@ -76,7 +76,7 @@ def app():
|
|
76 |
df_filtered = df[df['Vulnerability Label'].apply(lambda x: len(x) > 0 and 'Other' not in x)]
|
77 |
|
78 |
# Rename column
|
79 |
-
df_filtered.rename(columns={'Vulnerability Label': 'Group identified'})
|
80 |
|
81 |
|
82 |
# Store df in session state with key1
|
|
|
76 |
df_filtered = df[df['Vulnerability Label'].apply(lambda x: len(x) > 0 and 'Other' not in x)]
|
77 |
|
78 |
# Rename column
|
79 |
+
df_filtered.rename(columns={'Vulnerability Label': 'Group identified'}, inplace=True)
|
80 |
|
81 |
|
82 |
# Store df in session state with key1
|