diff --git a/dashboard_CLOUD.py b/dashboard_CLOUD.py index af4709e..7a3c0bb 100644 --- a/dashboard_CLOUD.py +++ b/dashboard_CLOUD.py @@ -307,7 +307,7 @@ def main(): # Create bins (adjust number of bins as needed) - bins = np.linspace(filtered_data[selected_feature].min(), filtered_data[selected_feature].max(), 20) # 20 bins + bins = np.linspace(filtered_data[selected_feature].min(), filtered_data[selected_feature].max(), 10) # 20 bins # Count data points within each bin for all customers and the selected customer counts_all, bins_all = np.histogram(filtered_data[selected_feature], bins=bins)