Fit histogram in gnuplot

4.5k Views Asked by At

I'm trying to fit data (histogram) in gnuplot. I tried various functions, and by looking at my histogram, I suppose the best fit is lognormal or gamma distribution, but I am not able to do this fit in gnuplot (Im rather new user of gnuplot).

Here is picture of histogram with gaussian distribution:

Histogram with gauss distribution (bad fit)

Also here is code in gnuplot:

reset
n=100 #number of intervals
max=15. #max value
 min=0. #min value
 width=(max-min)/n #interval width
#function used to map a value to the intervals
 hist(x,width)=width*floor(x/width)
 set term png #output terminal and file
 set output "histogram.png"
 set xrange [min:max]
 set yrange [0:]
#to put an empty boundary around the
#data inside an autoscaled graph.
 set offset graph 0.05,0.05,0.05,0.0
 set xtics min,(max-min)/5,max
 set boxwidth width*0.9
 set style fill solid 0.5 #fillstyle
 set tics out nomirror
 set xlabel "Diameter"
 set ylabel "Frequency"
#count and plot

#fac(x) = (int(x)==0) ? 1.0 : int(x) * fac(int(x)-1.0)
 gauss(x)=a/(sqrt(2*pi)*sigma)*exp(-(x-mean)**2/(2*sigma**2))
 fit gauss(x) 'hist.temp' u 1:2 via a, sigma, mean


 plot 'data.list' u (hist($8, width)):(1.0) smooth freq w boxes lc           rgb     "green" notitle, \
  gauss(x) w lines ls 2 lw 2

In file hist.temp is tabular output ( see this link )

0

There are 0 best solutions below