From 729ce6c6e5ca6f69e4e085a6692d3847ed860f6f Mon Sep 17 00:00:00 2001 From: RAYMOND Olivier <34789438+Isdinval@users.noreply.github.com> Date: Thu, 6 Jun 2024 15:59:16 +0200 Subject: [PATCH] Update dashboard_CLOUD.py --- dashboard_CLOUD.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard_CLOUD.py b/dashboard_CLOUD.py index f09f0c9..e72f4cd 100644 --- a/dashboard_CLOUD.py +++ b/dashboard_CLOUD.py @@ -260,7 +260,7 @@ def main(): all_features = customer_data_copy.select_dtypes(include=[np.number]) # Adjust for categorical features if needed # Filter controls - selected_feature = st.sidebar.selectbox('Select Feature:', all_features.columns) + selected_feature = st.selectbox('Select Feature:', all_features.columns) # Filter data based on selected feature filtered_data = customer_data_copy.copy() # Avoid modifying original data