summaryrefslogtreecommitdiff
path: root/dcnumfiles.plot
blob: c4b71c5a301a7fc3eb752218da137924235d395e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set terminal png size 600, 400
set output "dcnumfiles.png"
set yrange [0:]
set xrange [1:1e6]
set logscale x
set xlabel "number of files"
set ylabel "number of file lists"
set key box center bottom
set grid xtics ytics
# Empty file lists screw things up, hence grep
plot "< grep -v ^0 dcnumfiles" using (2**(floor(log($1)/log(2)))):(1.0) smooth freq with histeps title "unique",\
     ""                        using (2**(floor(log($2)/log(2)))):(1.0) smooth freq with histeps title "all"