How to boxplot with multiple datasets and with whiskers representing 5th and 95th percentile ?
1 次查看(过去 30 天)
显示 更早的评论
What is the best way to plot a boxplot with multiple datasets with the whiskers being 5th and 95th percentile ?
I did something like as shown below, however the whiskers do not match the 5th and 95th percentile, calculated separately for sanity check.
data=[a;b;c;d]; % a, b, c, d are four different datasets.
group = [repmat({'2011'}, length(a), 1); repmat({'2012'}, length(b), 1); ... repmat({'2013'}, length(c), 1); repmat({'2014'}, length(d), 1)]
boxplot(data, group,... 'symbol','','factordirection','auto','whisker',0.7193)
Is there any other way to achieve this ?
0 个评论
回答(1 个)
Megha Parthasarathy
2017-8-16
Hi Sayantan,
Refer to this Newsgroup thread that talks about specifying the 5th and 95th percentile in boxplot. Hope this helps.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!