How to split data set into multiple bins and perform condition statement on bins
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a logical data set and I am trying to divide it into 31 bins but my data points are not evenly distributing and I need it to be divided into 31 bins so that I can then run an if statement that counts the total number of ones in each bin and compares it to a condition.
0 comentarios
Respuestas (1)
Matt J
el 24 de Mzo. de 2022
Editada: Matt J
el 24 de Mzo. de 2022
Use the discretize() command.
to assign bin labels to each of your data points.
11 comentarios
Matt J
el 25 de Mzo. de 2022
Editada: Matt J
el 25 de Mzo. de 2022
So my example should give me a count of 3.
No, that would depnd on how the data is split into subsets. Even without randomization, a subset may contain no ones, like in the following, where the subsets are sequential.
Data = [0 0 0 1 0 1 1 0 1 1 1 0];
binLabels=[1 1 1 2 2 2 2 3 3 3 3 3];
numOnes=accumarray(binLabels',Data')
overallCount = sum(numOnes>=1)
Once again, because you haven't specified the details of the processing with enough care and detail, we get a result you don't expect. Perhaps you meant for the subsets to be interleaved. That does give your expected result:
binLabels=[1 2 3 1 2 3 1 2 3 1 2 3];
numOnes=accumarray(binLabels',Data')
overallCount = sum(numOnes>=1)
Ver también
Categorías
Más información sobre Curve Fitting Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!