Back to demo index

gnuplot demo script: steps.dem

autogenerated by webify.pl on Mon Feb 10 15:17:12 2025
gnuplot version gnuplot 6.0 patchlevel 3alpha
# Illustrate three variants of step plots - same data, three styles
#    plot with steps 
#    plot with fsteps 
#    plot with histeps 
#    plot with fillsteps 

set title "Compare steps, fsteps and histeps"
set key left

plot [0:12][0:13] "steps.dat" notitle with points ps 2 pt 6,  \
 "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'
set key right
plot 'hemisphr.dat' u (floor($1*20)):(1) smooth frequency with histeps title "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