You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would love this feature. Sometimes I am graphing a horizontal line, and that yields NaN for ymin / ymax since it tries to automagically set these. I am trying to find an easy tool to graph temperatures over time from a few different sensors. Ideally I'd like these to have the same Y axis scale so they are easy to compare.
Here is how I animate a few days of temperature data with jp:
for y in `seq 4500 -20 20` ; do
for x in {0..2} ; do
jq -sc ".[-$((1000 + $y)):-${y}] "'| map([.[3],.['"$x"']])' < remote.templog \
| jp -height 10 -width 100 >> graph.txt
done
cat graph.txt
rm graph.txt
sleep 0.05
done
Love this tool @sgreben !
Is there any way to manually set the min/max values for the Y-axis?
The text was updated successfully, but these errors were encountered: