bp = boxplot(weight);
for i = 1:size(bp,2), set(bp(:,i),'linewidth',wd(i)); end
In this case, how to distinguish box? Maybe we can make the box and whisker of different color? Help please!
Thanks much!
Cindy
doc boxplot
"To modify graphics properties of a box plot component, use findobj with the 'Tag' property to find the component's handle. 'Tag' values for box plot components depend on parameter settings, and are listed in the table below."
h = findobj('Tag','Box');
set(h,'Color','r');
"Pekka Kumpulainen" <pekka.nospam...@tut.please.fi> wrote in message <hdj3gg$r1k$1...@fred.mathworks.com>...