我注意到有時,當我使用函數bar()或hist()繪製條形圖時,繪製的條形圖沒有邊框。他們看起來不太高興,我更喜歡他們之間的邊界或一點空間。 該圖顯示了我現在得到的結果,繪製了三個不同的數據集。第三張圖放大以顯示條之間的空間不足。 爲什麼有時酒吧或酒吧的酒吧沒有邊界?
我到那裏,這與條形函數中'histc'參數有關。如果沒有histc參數,小節之間會有一些空格,但是小節將以邊的值爲中心,而我希望邊的值是每個小節的EDGES。
這是(相關部分),我使用的代碼:
[...]
if edges==0
%these following lines are used to take the min and max of the three dataset
maxx=max(cellfun(@max, reshape(data,1,size(data,1)*size(data,2))));
minn=min(cellfun(@min, reshape(data,1,size(data,1)*size(data,2))));
edges=minn:binW:maxx+binW;
end
[...]
y{k}=histc(data{r,c}, edges);
bar(edges,y{k} , 'histc');
[...]