11 lines
201 B
Gnuplot
11 lines
201 B
Gnuplot
|
set terminal svg
|
||
|
set size 1.0,0.9
|
||
|
|
||
|
set output 'month_of_year.svg'
|
||
|
unset key
|
||
|
set xrange [0.5:12.5]
|
||
|
set xtics 1
|
||
|
set grid y
|
||
|
set ylabel "Commits"
|
||
|
plot 'month_of_year.dat' using 1:2:(0.5) w boxes fs solid
|