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 af6257d commit de29631
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 @@ -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)
Expand Down

0 comments on commit de29631

Please sign in to comment.