Choosing bin size to include equal number of data points

I have 'time' of certain event to happen in first column and the 'probability of event to happen' in the second column. If i want to plot the data with each bin containing equal number of visits based on the time of visit, how should i decide the bin size?

3 Comments

How do you want to handle the case where this is impossible? If you have four bins in which to collect the following eight data points, what would you choose for the bins?
time = [1 1 1 1 1 2 3 4];
Do the bins all have to be the same width, or can you have variable size bins? If equal bins, is it OK to ignore empty bins and just try to find the bin width such that the standard deviation of counts in the occupied bins is minimized (this is pretty easy - actually variable sized bins is also fairly easy)?

Sign in to comment.

Answers (0)

Tags

Asked:

on 12 Dec 2018

Commented:

on 13 Dec 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!