draw a boxplot from percentiles

52 ビュー (過去 30 日間)
Mohammad Aljarrah
Mohammad Aljarrah 2020 年 9 月 21 日
コメント済み: Ameer Hamza 2020 年 9 月 21 日
i have a data that are just percentiles and i want to draw a boxplot from it. is there a way to do so? also, i want to plot multiple boxplots on the same figure. can anyone help me with this please? P.S i want the whiskers to show the minimum and maximum values.
data1
min 702.454
25th 1761.20017
50th 1863.878989
75th 2058.24099
max 5206.202
data2
min 662.9978
25th 854.7328411
50th 921.9074214
75th 1079.179764
max 4580.516

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 9 月 21 日
Something like this
data = [702.454 1761.20017 1863.878989 2058.24099 5206.202;
662.9978 854.7328411 921.9074214 1079.179764 4580.516];
data = data(:, [1 2 2 3 4 4 5]);
boxplot(data.', 'Whisker', inf);
  2 件のコメント
Mohammad Aljarrah
Mohammad Aljarrah 2020 年 9 月 21 日
thank you Ameer. it is working
Ameer Hamza
Ameer Hamza 2020 年 9 月 21 日
I am glad to be of help!

サインインしてコメントする。

その他の回答 (0 件)

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by