Change boxplot outlier shape
조회 수: 14 (최근 30일)
이전 댓글 표시
Is there a way to change the shape of the outliers when plotting boxplots? The default is the cross. Thanks
댓글 수: 0
채택된 답변
Ameer Hamza
2020년 4월 1일
Yes, you can specify the marker
a = [rand(1, 10) 3 3.5 4];
boxplot(a, 'Symbol', 'v');
You can choose any marker specifier described here: https://www.mathworks.com/help/releases/R2020a/matlab/ref/linespec.html
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!