Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -29,9 +29,7 @@ expander.write('''
|
|
29 |
To change the app's background color to white or black, click the three-dot menu on the right-hand side of your app, go to Settings and then Choose app theme, colors and fonts.
|
30 |
|
31 |
**File Handling and Errors:**
|
32 |
-
The app may provide an inaccurate answer, if the information is missing from the relevant cell.
|
33 |
-
|
34 |
-
The app may display an error message if your file has errors, date values or float numbers (0.5, 1.2, 4.5 etc.)
|
35 |
|
36 |
For any errors or inquiries, please contact us at [email protected]
|
37 |
|
@@ -71,7 +69,8 @@ if upload_file is not None:
|
|
71 |
st.session_state.df_original = df_original
|
72 |
|
73 |
all_columns = df_original.columns.tolist()
|
74 |
-
st.
|
|
|
75 |
parent_column = st.selectbox("Select the parent column:", all_columns)
|
76 |
value_column = st.selectbox("Select the value column:", all_columns)
|
77 |
|
|
|
29 |
To change the app's background color to white or black, click the three-dot menu on the right-hand side of your app, go to Settings and then Choose app theme, colors and fonts.
|
30 |
|
31 |
**File Handling and Errors:**
|
32 |
+
(a) The app may provide an inaccurate answer, if the information is missing from the relevant cell. (b) The app may display an error message if your file has errors, date values or float numbers (0.5, 1.2, 4.5 etc.)
|
|
|
|
|
33 |
|
34 |
For any errors or inquiries, please contact us at [email protected]
|
35 |
|
|
|
69 |
st.session_state.df_original = df_original
|
70 |
|
71 |
all_columns = df_original.columns.tolist()
|
72 |
+
st.divider()
|
73 |
+
st.write("Select columns from your data to visualize it in a Tree map")
|
74 |
parent_column = st.selectbox("Select the parent column:", all_columns)
|
75 |
value_column = st.selectbox("Select the value column:", all_columns)
|
76 |
|