Back to demo index

gnuplot demo script: steps.dem

autogenerated by webify.pl on Sun Sep 17 20:38:59 2023
gnuplot version gnuplot 6.0 patchlevel rc2
Your browser does not support the HTML 5 canvas element
          # unzoom rezoom zoom text ?
     
# 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


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'
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


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