Skip to content

Commit

Permalink
Update dashboard_CLOUD.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Isdinval authored Jun 6, 2024
1 parent 02ecc58 commit 729ce6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard_CLOUD.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 729ce6c

Please sign in to comment.