練習頻度のグラフを書くスクリプトが残ってたので、ついでに最小二乗法で1次関数近似してみたら月当たりの練習回数が毎年1日減ってるという傾向がわかった。
#!/bin/sh export LANG=ja_JP.UTF-8 grep '^TITLE: 今日の練習' backup.txt | grep -o '[1-9][0-9][0-9][0-9]-[01][0-9]' | uniq -c | awk '{print $2,$1}' > tmp/count.dat gnuplot plot.gp
#set term sixel size 1600,1024 set term png size 1280,1280 set output 'count.png' set xdata time set timefmt "%Y-%m" set format x "%Y-%m" unset key set grid f(x)=a*x+b a=-10 b=200 set fit prescale set fit limit 1e-12 fit f(x) 'tmp/count.dat' using 1:2 via a,b plot "tmp/count.dat" using 1:2 with linespoints, f(x) with lines pause -1