gnucash/util/src-count/count.gplot
Geert Janssens 53749867fe Move count.* to util
Also I made a first attempt at improving the line count.
The old script missed a number of files in the directories
it counted.

The script is still not in line with the current code base
though. A number of directories are still not counted (like
gnome, engine, ledger, ...)

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18628 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-02-08 20:53:35 +00:00

27 lines
654 B
Plaintext

#
# 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 format x "%Y"
set xrange ["01/09/1997":"01/12/2003"]
set title "Number of Lines of code in GnuCash"
set key right
set xlabel "Year"
set logscale y
set ylabel "KLOC\nLogarithmic Scale"
plot "count.dat" using 1:2 title "kloc"
# pause 1000