How can I make a bar graph using only max/min values with std dev line on both ends?

19 ビュー (過去 30 日間)
Balkarn Gill
Balkarn Gill 2022 年 2 月 6 日
編集済み: Turlough Hughes 2022 年 2 月 6 日
It would be similar to this picture, except without the red line through each bar. I just have the max value and min value of each bar. I also have the upper and lower standard deviation.

回答 (1 件)

Turlough Hughes
Turlough Hughes 2022 年 2 月 6 日
編集済み: Turlough Hughes 2022 年 2 月 6 日
x = rand(10,3);
boxplot(x);
Normally (at least for most other plot functions) you could do this sort of thing with a name-value pair argument or by getting the handle for example with h = boxplot(x) and then modifying the properties there. However, I didn't see any options to remove or hide the red line with those approaches. So I suggest using findobj as follows:
figure(), boxplot(x)
h = findobj(gca,'Tag','Median');
delete(h)

カテゴリ

Help Center および File ExchangeGraphics Object Identification についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by