http://arrrrv3dzzoluxubt3p24lpn7qu4rxuem3fb4kcmboji3dgpkgt4b2ad.onion/worter/gnuplot
#min value
width=(max-min)/n #interval width
#function used to map a value to the intervals
hist(x,width)=width*floor(x/width)+width/2.0
#set term png #output terminal and file
set term pngcairo background "#000000"
set border lc rgb "white"
set output "histogram6.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...