Unrecognized function or variable 'boxplotGroup'
20 ビュー (過去 30 日間)
古いコメントを表示
I am trying to make a grouped boxplot and I keep getting the above error.... I am currently copying and pasting code to verify it works and am still getting the same error. I have the Statistics toolbox downloaded and can make a normal boxplot with no issue.
A = rand(100,8);
B = rand(100,8)*2;
C = rand(100,8)*4;
data = {A,B,C};
boxplotGroup(data, 'PrimaryLabels', {'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h'}, ...
'SecondaryLabels',{'A', 'B' 'C'}, 'InterGroupSpace', 3)
0 件のコメント
採用された回答
Voss
2022 年 4 月 12 日
boxplotGroup is a function from the File Exchange, so you'd have to download it from there:
2 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!