من هم همیشه دادههایم را با گنوپلات به هیستوگرام تبدیل میکنم. گنوپلات تا جایی که من میدانم هنوز ویژگی خودکاری برای ساختن هیستوگرام ندارد، ولی با کدهای زیر میتوانید آن را بسازید:
bw = 5 # substitute what you want
bin(x,width)=width*floor(x/width)
plot 'data' using (bin($1,bw)):(1.0) smooth freq with boxes
منبع: http://old.nabble.com/gnuplot-histograms-td15811193.html
bw = 5 # substitute what you want
bin(x,width)=width*floor(x/width)
plot 'data' using (bin($1,bw)):(1.0) smooth freq with boxes
منبع: http://old.nabble.com/gnuplot-histograms-td15811193.html