Add spacing for a grouped bar graph matlab -
i have 2 groups of data 4ach , 6ach: , 4 sub-groups within:
4ach 6ach 0.04485625 0.04265625 1.881133333 0.595466667 1.152166667 0.613 1.842835802 0.401030556 0.3139072 0.170007298 ----- 0.04485625 0.04265625 0.002466667 0.000133333 1.152166667 0.613 0.003676543 0.000462346 0.3139072 0.170007298 ---- 0.000628571 0.00005 0.001266667 0.0002 1.152166667 0.613 0.001048457 0.000462346 0.30285028 0.159355735 ------ 0.04485625 0.04265625 0.001266667 0.0002 1.152166667 0.613 0.002796914 0.000777778 0.30285028 0.159355735
bar([4ach 6ach])
gives me:
how add distinct spacing red lines are? spot on r. grouped bar graph , how can second row of text? remember seeing text command. shows how grouped labels can't quite work out example : how can adjust 3-d bar grouping , y-axis labeling in matlab?
one solution inserting in tables zeros instead of '----' or try one
bar([[4ach(1:5) 6ach(1:5)];[0 0];[4ach(6:10) 6ach(6:10)];... [0 0];[4ach(11:15) 6ach(11:15)]])
Comments
Post a Comment