Back to demo index

gnuplot demo script: steps.dem

autogenerated by webify.pl on Sat Oct 1 22:49:06 2022
gnuplot version gnuplot 5.5 patchlevel 0
Your browser does not support the HTML 5 canvas element
          # unzoom rezoom zoom text ?
     
# 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


Your browser does not support the HTML 5 canvas element
          # unzoom rezoom zoom text ?
     
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


Your browser does not support the HTML 5 canvas element
          # unzoom rezoom zoom text ?
     
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