[Gnucash-changes] small gnuplot script to graph the total number of lines of code in

Linas Vepstas linas at cvs.gnucash.org
Fri Jul 16 23:52:32 EDT 2004


Log Message:
-----------
small gnuplot script to graph the total number of lines of code in
gnucash (historical data)

Added Files:
-----------
    gnucash/src:
        count.gplot

Revision Data
-------------
--- /dev/null
+++ src/count.gplot
@@ -0,0 +1,25 @@
+#
+# file: count.gplot
+# function: plot the number of lines of code in gnucash as function of date
+# To generate the graph, say "gnuplot count.gplot" at the command line
+#
+# history: created by Linas Vepstas July 2004
+#
+# set term x11
+# set term pbm
+# set term gif size 400,300
+set term pbm medium color
+set out 'count.png'
+set data style linespoints 
+set xdata time
+set timefmt "%d/%m/%Y"
+set format x "%m/%y"
+set xrange ["01/09/1997":"01/12/2003"]
+set title "Number of Lines of code in GnuCash"
+set key right
+set xlabel "Date"
+set logscale y
+set ylabel "KLOC"
+plot "count.dat" using 1:2	title "kloc"
+
+# pause 1000


More information about the gnucash-changes mailing list