summaryrefslogtreecommitdiff
path: root/dcnumfiles.plot
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2014-01-09 20:12:17 +0100
committerYorhel <git@yorhel.nl>2014-01-09 20:12:17 +0100
commit8cfbc07271b6f170acf6c6dbe44836644fbf5e61 (patch)
treef893ef62451e2f76d0bc3c13985611776d723046 /dcnumfiles.plot
Initial commitHEADmaster
Diffstat (limited to 'dcnumfiles.plot')
-rw-r--r--dcnumfiles.plot12
1 files changed, 12 insertions, 0 deletions
diff --git a/dcnumfiles.plot b/dcnumfiles.plot
new file mode 100644
index 0000000..c4b71c5
--- /dev/null
+++ b/dcnumfiles.plot
@@ -0,0 +1,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"