X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=c%2Fgoertzel%2Fsleepplot.sh;fp=c%2Fgoertzel%2Fsleepplot.sh;h=fe1c9af740fd739a5a727d3c0f38e9a7fb6284b3;hb=991ef83fab62bdf4e2d7c3dda4bb21352143f8ed;hp=5b5a92ebb80a3a5e14a795ef5dcb19f4331bd308;hpb=3e5828b5bfdae6ef1457d8e44c551369e12e467b;p=mirrors%2FPrograms.git diff --git a/c/goertzel/sleepplot.sh b/c/goertzel/sleepplot.sh index 5b5a92e..fe1c9af 100755 --- a/c/goertzel/sleepplot.sh +++ b/c/goertzel/sleepplot.sh @@ -6,8 +6,10 @@ test -z "$1" && { } #Count events: -seconds=60 -./sleepcount.sh "$1" "$seconds" +seconds='60 300' +for i in $seconds; do + ./sleepcount.sh "$1" "$i" & +done #Approximate size of graph size="$(tail -n 1 "$1" | cut -d . -f 1)" @@ -32,8 +34,10 @@ set timefmt "%s" set grid #set pointsize 0.5 +#"$1.counts.$seconds" using 1:(\$2/5) title "Activations in last $seconds seconds" smooth csplines plot "$1" using 2:5 title "Sensor state" with steps,\ -"$1.counts.$seconds" using 1:(\$2/5) title "Activations in last $seconds seconds" smooth csplines +"$1.counts.60" using 1:(\$2/5) title "Activations in last 60 seconds" smooth csplines,\ +"$1.counts.300" using 1:(\$2/10) title "Activations in last 300 seconds" smooth csplines\ EOF