set output '| ps2pdf -dEPSCrop - data/object-size-histo-big.pdf' set terminal postscript color eps size 2.8,1.7 enhanced "AGaramondPro-Regular" 14 set pointsize 1.1 set rmargin 3 set lmargin 10 set nokey #set xtic format "%.0fMB" #set xtics (64,256,512,768,1024) set xlabel "Object size (bytes)" font "AGaramondPro-Regular,16" set ylabel "Frequency" font "AGaramondPro-Regular,16" set ytic format "%.0f%%" #set yrange [0:7000] total = `awk '{s+=$2} END {print s}' data/object-size-histo-big` set xrange [32:262144] set logscale x 2 plot "data/object-size-histo-big" using (1.414*$1):(100*$2/total) with boxes fs pattern 1