Change boxplot outlier shape
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Xen
el 1 de Abr. de 2020
Comentada: Ameer Hamza
el 1 de Abr. de 2020
Is there a way to change the shape of the outliers when plotting boxplots? The default is the cross. Thanks
0 comentarios
Respuesta aceptada
Ameer Hamza
el 1 de Abr. de 2020
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
2 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!