boxplot with months???
이전 댓글 표시
Hi, i have a 6021x1 matrix with, each row corresponds to an specific day, and i need to create a boxplot for the months.
댓글 수: 3
Image Analyst
2016년 10월 13일
You've made an announcement, not a question. Do you have a question? Well, I have one. Do you have another array that says what day each row is. Like okay, row 55 has the measurement made on day #55, but is that March 13, July 4, November 24, or what???? How can we group by months if we don't know which row is in which month?
Ern V
2016년 10월 13일
Massimo Zanetti
2016년 10월 14일
Now it is specific.
답변 (2개)
Walter Roberson
2016년 10월 14일
dv = datevec(SerialDateNumbers);
month_num = dv(:,2);
MonthLab = {'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'};
boxplot(data, month_num, 'Labels', MonthLab);
Luís Henrique Bordin
2021년 10월 19일
0 개 추천
Hi, I have a similar need, the only difference is that i need a continuous time-series boxplot by month, i.e., not joining data of same months of different years, all in the same month boxplot.. The result will be like: jan/2019, feb/2019...... jan/2020, fev/2020... and so on.
카테고리
도움말 센터 및 File Exchange에서 F Distribution에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
