squiggle.c/scratchpad/plotting/gnuplot/term4.gp

31 lines
498 B
Plaintext
Raw Normal View History

2024-01-30 13:52:25 +00:00
reset
2024-01-30 15:23:51 +00:00
# stats '-' nooutput
2024-01-30 13:52:25 +00:00
# show variables all
2024-01-30 15:23:51 +00:00
# max=STATS_max
# min=STATS_min
min=-1
max=25
2024-01-30 13:52:25 +00:00
n=1000
width=(max-min)/n
hist(x,width)=width*floor(x/width)+width/2.0
set xrange [min:max]
set yrange [0:]
unset xtics
unset ytics
unset border
set xtics out nomirror norotate offset 0,0
set ytics out nomirror norotate
set ytics in nomirror norotate offset 0,0
set tics scale 0,0,0,0
set xlabel "x"
set terminal dumb size 100, 25
2024-01-30 15:23:51 +00:00
plot '-' u (hist($1,width)):(1.0) smooth freq w boxes notitle