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)