X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=c%2Fgoertzel%2Fsleepplot.sh;h=a47f7e2f92be1efe07f7d135bf38656b29933782;hb=7f021ac661f2ad4b3dfbfa55ac168e60bfe74b32;hp=00d275a62fccdebeb5ed75c50b8d087a15966208;hpb=6e6479ce54fab9f843d8cb2d620460b848b84be6;p=mirrors%2FPrograms.git diff --git a/c/goertzel/sleepplot.sh b/c/goertzel/sleepplot.sh index 00d275a..a47f7e2 100755 --- a/c/goertzel/sleepplot.sh +++ b/c/goertzel/sleepplot.sh @@ -9,8 +9,12 @@ in="$1"; graphout="${in%%.*}.png" test -n "$2" && graphout="$2"; +#Last state +last="$(tail -n 1 "$in" | cut -d ' ' -f 5)" +test "$last" -gt 0 && last="motion" || last="peace"; + #Approximate size of graph -size="$(tail -n 1 "$in" | cut -d . -f 1)" +size="$(tail -n 1 "$in" | cut -d . -f 1 | sed -e 's/^0*//' | tee /tmp/lol)" test $size -gt 3600 && size="$(( $size/10 ))" #For prolonged periods size="$(( 600 + $size ))" @@ -19,7 +23,7 @@ gnuplot << EOF set output "$graphout" set terminal png size $size,400 -set title "Sleep motions" +set title "Sleep motions (current state: $last)" set xlabel "time" set ylabel "motion" @@ -34,11 +38,15 @@ set grid #set pointsize 0.5 plot\ "$in" using 2:5 title "Sensor state" with steps,\ -"" using 2:(\$6*2) title "Avg. 10s" with lines,\ -"" using 2:(\$7*3) title "Avg. 30s" with lines,\ -"" using 2:(\$8*3) title "Avg. 60s" with lines,\ -"" using 2:(\$9*3) title "Avg. 90s" with lines,\ -"" using 2:(\$10*4) title "Avg. 120s" smooth bezier\ +"$in.stats" using 1:((\$3*3+\$4*6+\$5*6+\$6+\$7)/5) title "Avg." smooth bezier\ +#"" using 2:((\$6*3+\$7*6+\$8*6+\$9+\$10)/5) title "Avg." with lines,\ +#"$in.stats" using 1:((\$3*3+\$4*6+\$5*6+\$6+\$7)/5) title "Avg." with lines,\ +#"" using 2:(\$6*2) title "Avg. 10s" with lines,\ +#"" using 2:(\$7*3) title "Avg. 30s" with lines,\ +#"" using 2:(\$8*3) title "Avg. 60s" with lines,\ +#"" using 2:(\$9*3) title "Avg. 90s" with lines,\ +#"" using 2:(\$10*4) title "Avg. 120s" smooth bezier\ + EOF