Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|