RatanPrakash commited on
Commit
148f79b
·
1 Parent(s): a2e2ff2

Remove redundant expander for most common words in app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -2
app.py CHANGED
@@ -46,8 +46,6 @@ if uploaded_file is not None:
46
 
47
  with st.expander('View word cloud and most common words'):
48
  st.pyplot(preprocessor.word_cloud(df, selected_user))
49
-
50
- with st.expander('Most common words'):
51
  st.write('Most common words')
52
  temp_df, plot = preprocessor.most_common_words(selected_user, df)
53
  st.write(temp_df)
 
46
 
47
  with st.expander('View word cloud and most common words'):
48
  st.pyplot(preprocessor.word_cloud(df, selected_user))
 
 
49
  st.write('Most common words')
50
  temp_df, plot = preprocessor.most_common_words(selected_user, df)
51
  st.write(temp_df)