Box Plot for Time (HH:MM:SS) data
9 次查看(过去 30 天)
显示 更早的评论
Hi all, I am trying to get the boxplot for Time (HH:MM:SS) and day name data but unable to get the required plot. In detail, I would like to get the Boxplot in terms of days, (Monday to Sunday). I have attached the sample data and any help in this regard is highly appreciated.
3 个评论
Cris LaPierre
2021-4-18
Yes, with numeric data, you can calculate medians and standard deviations. It looks like your data is a character array, meaning it is text. See Jonas' suggestion below.
采纳的回答
Jonas
2021-4-18
i suggest to convert you time (Hour : Minute : Seconds) to seconds using
[~, ~, ~, H, MN, S]=datevec('14:35:22','HH:MM:SS');
MN=MN+60*H;
S=S+MN*60;
then doing you boxplot thing and then converting your boxplot y labels back to a timestring
4 个评论
Jonas
2021-4-19
or the other way around: if you have specific times you want to see, calculates them as seconds, set the values as yticks and then set the ylabels to the times you wanted
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Distribution Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!