when we call for boxplot function, is there any setting to avoid that such function that evaluates outliers, so that the red crosses will be considered part of the distributi
2 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Rik
2021 年 6 月 4 日
Have you read the documentation? I expect setting Whisker to inf should do it.
And indeed it does:
boxplot([5;randn(100,1)],'Whisker',inf)
2 件のコメント
Rik
2021 年 6 月 4 日
What code did you try exactly?
Doesn't this work?
boxplot([path1; path2; path3; path4; path5; path6; path7; path8],group,'Whisker',inf)
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!