@ledsun blog

無味の味は佳境に入らざればすなわち知れず

またまた Gitのdiffを振り返る

ふたたび Gitのdiffを振り返る - @ledsun blog で日単位で集計しました。

週、月、年単位の集計結果も見ていきましょう。

gnuplot> set xdata time
gnuplot> set timefmt "%Y-%m-%d_%H:%M:%S"
gnuplot> plot 'all_log_week.dat' using 1:2 w i title 'insertions' lw 2, 'all_log_week.dat' using 1:3 w i title 'deletions' lw 2

f:id:ledsun:20201230223748p:plain
週毎のファイルの変更行数

グラフが見やすくてよいです。

gnuplot> plot 'all_log_month.dat' using 1:2 w i title 'insertions' lw 2, 'all_log_month.dat' using 1:3 w p title 'deletions'

f:id:ledsun:20201230223936p:plain
月毎のファイルの変更行数

これも全体的な傾向をつかめているように思います。

今後の追跡調査は、週または月で集計するのが良さそうです。

gnuplot> plot 'all_log_year.dat' using 1:2 w l title 'insertions', 'all_log_year.dat' using 1:3 w l title 'deletions'

f:id:ledsun:20201230224127p:plain
年毎のファイルの変更行数

2019年が5月開始なので、8ヶ月分のデータしかありません。 期間が1.5倍なので、増加量としては妥当な感じです。

insertions/deletionsの比率が1.1から1.3に増えているのが興味深いです。 機能追加が多かったのでしょうか?