Back to demo index

gnuplot demo script: steps.dem

autogenerated by webify.pl on Sat Oct 1 22:26:40 2022
gnuplot version gnuplot 5.5 patchlevel 0
# Illustrate three variants of step plots
#    plot with steps 
#    plot with fsteps 
#    plot with histeps 
#    plot with fillsteps 

set title "Compare steps, fsteps and histeps"
plot [0:12][0:13] "steps.dat" notitle with points,  \
 "steps.dat" title 'steps' with steps, \
 'steps.dat' title 'fsteps' with fsteps, \
 'steps.dat' title 'histeps' with histeps


Click here for minimal script to generate this plot


set title "Histogram built from unsorted data by 'smooth frequency'"
set ylabel 'counts per bin'
set xlabel 'bins'
plot 'hemisphr.dat' u (floor($1*20)):(1) smooth frequency with histeps


Click here for minimal script to generate this plot


set style fill solid 1.0
plot 'hemisphr.dat' u (floor($1*20)):(1) smooth freq with fillsteps title "with fillsteps"


Click here for minimal script to generate this plot


reset