leavoigt commited on
Commit
e692c88
1 Parent(s): 40953ed

Update appStore/vulnerability_analysis.py

Browse files
Files changed (1) hide show
  1. appStore/vulnerability_analysis.py +2 -2
appStore/vulnerability_analysis.py CHANGED
@@ -80,7 +80,7 @@ def vulnerability_display():
80
 
81
  # Assign dataframe a name
82
  df_vul = st.session_state['key0']
83
- st.write(df_vul)
84
 
85
  col1, col2 = st.columns([1,1])
86
 
@@ -141,5 +141,5 @@ def vulnerability_display():
141
  # st.plotly_chart(fig, use_container_width=True)
142
 
143
  # ### Table
144
- st.table(df_vul[df_vul['Vulnerability Label'] != 'Other'])
145
 
 
80
 
81
  # Assign dataframe a name
82
  df_vul = st.session_state['key0']
83
+ #st.write(df_vul)
84
 
85
  col1, col2 = st.columns([1,1])
86
 
 
141
  # st.plotly_chart(fig, use_container_width=True)
142
 
143
  # ### Table
144
+ st.write(df[df['groups_column'].apply(lambda x: 'Other' not in x)])
145