Plot based on bins with binary data
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello
I have two arrays, say array stimDuration - which contains the duration a subject has seen a stimulation - and array answers, which is binary (containing 1 or 0's) to indicate if subject could correctly identify the stimulus or not. The data could look something like that:
stimDuration = [1, 2, 3, 2, 4, 6, 8, 1, 11, 12, 9] answers = [0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0]
I want now to have n bins for the stimDuration (for instance 2 bins, one going from 1 to 6, the other from 7 to 12) as the x axis. The y axis would be the percentage of the correct answers for each bin. For instance for the bin from 1 to 6, we have a total of 7 answers, 5 of which are correct (hence the y value would be 5/7). Is there a straightforward way of doing that? Thanks
댓글 수: 2
Alexandra Harkai
2016년 11월 24일
If you have n bins, how would they be distributed exactly? It seems you want them to be of equal size ranging from the smallest to the largest stimDuration values, but it may not be what you ultimately want.
채택된 답변
Alexandra Harkai
2016년 11월 24일
This would do the trick if you bin them from 0 to max(stimDuration):
n = 2; % number of bins
bar(splitapply(@(x) sum(x)/size(x,2), answers, ceil(stimDuration/(max(stimDuration)/n))));
If you have R2016b you could do:
bar(splitapply(@(x) sum(x)/size(x,2), answers, discretize(stimDuration, n)));
댓글 수: 10
Alexandra Harkai
2016년 11월 25일
Yes. It gives 2 bins as far as I can see. If you look into the documentation for discretize and linspace, you can see what they do and how you can modify the command depending on what you need.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!