I would like to delete the black line in the boxes

2 Ansichten (letzte 30 Tage)
Hi everybody, I would like to delete the black line as I set 'PlotStyle' as 'compact' or equally 'BoxStyle' as 'filled'
  5 Kommentare
Emanuele Raffaele Pipoli
Emanuele Raffaele Pipoli am 15 Mai 2023
Nope, I'm asking how to get rid of the black lines in the boxes. If i don't set 'BoxStyle' as 'filled' they don't appear, just like in this other image. The code for this other plot is:
boxplot(c, 'Colors',colors);
Cris LaPierre
Cris LaPierre am 15 Mai 2023
I'm not able to reproduce. Could you share a workable example?
load carsmall
boxplot(MPG,Origin,'PlotStyle','compact','ColorGroup',Origin)
title('Miles per Gallon by Vehicle Origin')
xlabel('Country of Origin')
ylabel('Miles per Gallon (MPG)')

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

the cyclist
the cyclist am 15 Mai 2023
Bearbeitet: the cyclist am 15 Mai 2023
Those are the whiskers, in the compact style. You can set their length to zero. (I also removed outliers, to show it more clearly.)
rng default
data = randn(100,3);
boxplot(data,'PlotStyle','compact','Whisker',0,'Symbol','')

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by