我尝试使用gitstats数据添加作者为项目贡献的点。我已将其解析出html文件,因此它会进入一个看起来像
的.dat文件2011-04-27 5000
2012-02-04 5000
2011-05-03 5000
2013-08-24 5000
2012-10-29 5000
然后我想使用gnuplot绘制整个LoC和添加的日期点,以显示作者何时开始处理项目。 gnuplot文件看起来像
set terminal png transparent size 1080,640
set size 1.0,1.0
set output 'lines_of_code.png'
unset key
set yrange [0:]
set xdata time
set timefmt "%s"
set format x "%Y-%m-%d"
set grid y
set ylabel "Lines"
set xtics rotate
set bmargin 6
plot 'lines_of_code.dat' using 1:2 w lines, 'authordata.dat' using 1:2 w points
但是我的图表没有显示authordata.dat点。我很确定这是我尝试添加第二个.dat文件的方法,但谷歌搜索到目前为止还没有用。
答案 0 :(得分:0)
感谢christoph的评论,我意识到了我的问题。两个文件都需要使用1970 01 01或日期的秒数。感谢