summaryrefslogtreecommitdiff
path: root/dclistsize.plot
diff options
context:
space:
mode:
Diffstat (limited to 'dclistsize.plot')
-rw-r--r--dclistsize.plot13
1 files changed, 13 insertions, 0 deletions
diff --git a/dclistsize.plot b/dclistsize.plot
new file mode 100644
index 0000000..b3aa5b1
--- /dev/null
+++ b/dclistsize.plot
@@ -0,0 +1,13 @@
+set terminal png size 600, 400
+set output "dclistsize.png"
+set yrange [0:]
+set xrange [200:104857600]
+set logscale x
+set xlabel "file list size"
+set ylabel "number of file lists"
+set key box center bottom
+set grid xtics ytics
+set xtics ("1K" 1024, "10K" 10240, "100K" 102400,\
+ "1M" 1048576, "10M" 10485760, "100M" 104857600)
+plot "dclistsize" using (2**(floor(log($1)/log(2)))):(1.0) smooth freq with histeps title "compressed",\
+ "" using (2**(floor(log($2)/log(2)))):(1.0) smooth freq with histeps title "uncompressed"