dperales commited on
Commit
441577a
·
1 Parent(s): 2c1612c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -56,6 +56,9 @@ if page == "Clustering Analysis":
56
  for file in csv_files:
57
  st.write(file)
58
 
 
 
 
59
  # Upload the CSV file
60
  uploaded_file = st.file_uploader("Choose a CSV file", type="csv")
61
 
 
56
  for file in csv_files:
57
  st.write(file)
58
 
59
+ # Select a CSV file from the list
60
+ selected_csv = st.selectbox("Select a CSV file from the list", ["None"] + csv_files)
61
+
62
  # Upload the CSV file
63
  uploaded_file = st.file_uploader("Choose a CSV file", type="csv")
64