naufalnashif commited on
Commit
6ed7ae3
·
1 Parent(s): 512b477

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -285,6 +285,9 @@ with st.expander("Preference Settings :"):
285
  if "Hasil EDA" in selected_options:
286
  colormap = st.selectbox("Pilih Warna Wordclouds :", ["Greys", "Purples", "Blues", "Greens", "Oranges", "Reds", "YlOrBr", "YlOrRd", "OrRd", "PuRd", "RdPu", "BuPu", "GnBu", "PuBu", "YlGnBu", "PuBuGn", "BuGn", "YlGn"])
287
  words = st.number_input("Masukkan Jumlah Most Common Words :", min_value = 1, max_value = 15, step = 1, placeholder="Type a number...")
 
 
 
288
 
289
  st.info('Tekan "Mulai Scraping" kembali jika tampilan menghilang ', icon="ℹ️")
290
 
 
285
  if "Hasil EDA" in selected_options:
286
  colormap = st.selectbox("Pilih Warna Wordclouds :", ["Greys", "Purples", "Blues", "Greens", "Oranges", "Reds", "YlOrBr", "YlOrRd", "OrRd", "PuRd", "RdPu", "BuPu", "GnBu", "PuBu", "YlGnBu", "PuBuGn", "BuGn", "YlGn"])
287
  words = st.number_input("Masukkan Jumlah Most Common Words :", min_value = 1, max_value = 15, step = 1, placeholder="Type a number...")
288
+ else :
289
+ colormap = "Greys"
290
+ words = 10
291
 
292
  st.info('Tekan "Mulai Scraping" kembali jika tampilan menghilang ', icon="ℹ️")
293