adding clustering app description
Browse files- apps/clustering.py +7 -0
apps/clustering.py
CHANGED
|
@@ -50,6 +50,13 @@ def to_excel(df: pd.DataFrame) -> bytes:
|
|
| 50 |
|
| 51 |
st.title("Automatic Site Clustering App")
|
| 52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
uploaded_file = st.file_uploader("Upload your Excel file", type=["xlsx"])
|
| 54 |
|
| 55 |
if uploaded_file:
|
|
|
|
| 50 |
|
| 51 |
st.title("Automatic Site Clustering App")
|
| 52 |
|
| 53 |
+
# Add description
|
| 54 |
+
st.write(
|
| 55 |
+
"""This app allows you to cluster sites based on their latitude and longitude.
|
| 56 |
+
**Please choose a file containing the latitude and longitude region and site code columns.**
|
| 57 |
+
"""
|
| 58 |
+
)
|
| 59 |
+
|
| 60 |
uploaded_file = st.file_uploader("Upload your Excel file", type=["xlsx"])
|
| 61 |
|
| 62 |
if uploaded_file:
|