diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-09-26 14:43:08 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-09-26 14:43:08 +0000 |
commit | cc9160ad708370f84a0d14aaefcda258d962d4bc (patch) | |
tree | 1dc385330b0d5408e6fd9d8be2169df0370b14c0 /growthplot | |
parent | aba9642fb57e9a60ba895df58e9b6a4c9c965f6e (diff) | |
download | fetchmail-cc9160ad708370f84a0d14aaefcda258d962d4bc.tar.gz fetchmail-cc9160ad708370f84a0d14aaefcda258d962d4bc.tar.bz2 fetchmail-cc9160ad708370f84a0d14aaefcda258d962d4bc.zip |
We plot code size now.
svn path=/trunk/; revision=2609
Diffstat (limited to 'growthplot')
-rwxr-xr-x | growthplot | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -13,6 +13,12 @@ cat >/tmp/growthimage$$ <<EOF set title "Fetchmail project growth history" set xlabel 'Days since baseline' set ylabel 'Participants' +set y2label 'Lines of code' +set ytics nomirror +set y2tics +set tics out +set autoscale y +set y2range [5000:50000] set key bottom right box set terminal gif @@ -51,8 +57,8 @@ EOF ( while read version size friends announce total days date do - echo "set arrow from $days, $total - 80 to $days, $total - 30 head" - echo "set label '$version' at $days - 5, $total - 90" + echo "set arrow from $days, $total - 55 to $days, $total - 15 head" + echo "set label '$version' at $days - 5, $total - 65" done ) </tmp/growthmajors$$ >>/tmp/growthimage$$ @@ -62,7 +68,9 @@ plot [] [0:] '/tmp/growthnumbers$$' using 6:5 \ '/tmp/growthannounce$$' using 6:4 \ title "fetchmail-announce" with points 4, \ '/tmp/growthannounce$$' using 6:3 \ - title "fetchmail-friends" with points 2 + title "fetchmail-friends" with points 2, \ + '/tmp/growthnumbers$$' using 6:2 axes x1y2 \ + title "Lines of code" with points 6 EOF # The gnuplot driver for PNG doesn't do color |