plotting your svn commits
April 22, 2008 – 4:43 pmI have hat a small problem for give to my PFC director one time graph about order and time performance of my Apdn project. Because the first graph and the reality it's quite different.
I'm turn the problem and I decided explain only the true, this is my svn comit histogram about apdn project.
When x axes is a number of week project and y-axis is a sizeof(commit), i merge into weeks because split this histogram into several days is too big
You can create this histogram with this program and execute this into you workcopy subversion directory
pfreixes@hidrogen:~/myprojects/apdn$ ./svntrack.py > weeks.dat
pfreixes@hidrogen:~/myprojects/apdn$ gnuplot
gnuplot> set style data histograms
gnuplot> set output "apdn_hist_commit.png"
gnuplot> set terminal png
gnuplot> plot "weeks.dat" using 2:xticlabels(1)
