Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -17,9 +17,9 @@ expander.write('''
|
|
17 |
This app accepts files in .csv and .xlsx formats.
|
18 |
|
19 |
**How to Use:**
|
20 |
-
Upload your file first. Select two different columns from your data to visualize in a
|
21 |
|
22 |
-
**Tree Map
|
23 |
Your uploaded data is presented in an interactive Tree Map for visual exploration. Click on any area within the map to access specific data insights.
|
24 |
|
25 |
**Usage Limits:**
|
@@ -73,7 +73,7 @@ if upload_file is not None:
|
|
73 |
|
74 |
all_columns = df_original.columns.tolist()
|
75 |
st.divider()
|
76 |
-
st.write("Select columns from your data to visualize
|
77 |
|
78 |
parent_column = st.selectbox("Select the parent column:", all_columns)
|
79 |
value_column = st.selectbox("Select the value column:", all_columns)
|
|
|
17 |
This app accepts files in .csv and .xlsx formats.
|
18 |
|
19 |
**How to Use:**
|
20 |
+
Upload your file first. Select two different columns from your data to visualize in a Tree Map. Then, type your question into the text area provided and click the 'Retrieve your answer' button.
|
21 |
|
22 |
+
**Tree Map:**
|
23 |
Your uploaded data is presented in an interactive Tree Map for visual exploration. Click on any area within the map to access specific data insights.
|
24 |
|
25 |
**Usage Limits:**
|
|
|
73 |
|
74 |
all_columns = df_original.columns.tolist()
|
75 |
st.divider()
|
76 |
+
st.write("Select two different columns from your data to visualize in a **Tree Map**. ")
|
77 |
|
78 |
parent_column = st.selectbox("Select the parent column:", all_columns)
|
79 |
value_column = st.selectbox("Select the value column:", all_columns)
|