Browse Source

gnuplot: use 'w histeps' for files_by_date.

'smooth csplines' showed negative file count sometimes, which wasn't nice ;-)
Heikki Hokkanen 17 years ago
parent
commit
51cf60216b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      gitstats

+ 1
- 1
gitstats View File

816
 set ylabel "Files"
816
 set ylabel "Files"
817
 set xtics rotate by 90
817
 set xtics rotate by 90
818
 set bmargin 6
818
 set bmargin 6
819
-plot 'files_by_date.dat' using 1:2 smooth csplines
819
+plot 'files_by_date.dat' using 1:2 w histeps
820
 """)
820
 """)
821
 		f.close()
821
 		f.close()
822
 
822