nlpblogs commited on
Commit
a48f95b
·
verified ·
1 Parent(s): b899e1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -165,7 +165,7 @@ if st.button("Sentiment Analysis", type="secondary"):
165
 
166
  df1 = pd.concat([df, sentiment_df], axis=1)
167
  st.dataframe(df1)
168
- result = df1.dropna()
169
  st.dataframe(result)
170
 
171
  with tab2:
 
165
 
166
  df1 = pd.concat([df, sentiment_df], axis=1)
167
  st.dataframe(df1)
168
+ result = df1.dropna(how='all')
169
  st.dataframe(result)
170
 
171
  with tab2: