Error message when using notBoxPlot and how to use notBoxPlot when columns are different length
显示 更早的评论
Hello! I am having trouble graphing my data using notBoxPlot because the columns have different length. I will really appreciate the help- thank you! Here is what I have so far.
newfile = table2array(file);
Y = [newfile(:,1);newfile(:,2);newfile(:,3);newfile(:,4)];
X = ones(52,1);
X = [X;2*X;3*X;4*X];
figure
notBoxPlot(Y,X)
1 个评论
Walter Roberson
2021-1-22
X = ones(52,1);
make that
X = ones(size(newfile, 1),1);
回答(1 个)
Pratheek Punchathody
2021-1-22
0 个投票
As per my understanding "notBoxPlot" is one of the several submissions in MATLAB File Exchange on MATLAB Central which is a forum for our product users to interact, exchange information and knowledge, without MathWorks' involvement. Feel free to contact the author of this submission directly for specific questions about the implementation.
As a work around MATLAB has a function "boxplot()" which can create box plot of the data. Also this function has the capability to create Box Plots for vectors of varying length. Refer to the documentation on Box Plots for Vectors of Varying Length for further details.
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!