Artifact dc3207f404a83f82bd9784b458709db3815c94e1f68a6158e8a5854091ce9e79:
- File
r34.1/plot/demo/errorbar.demo
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 939) [annotate] [blame] [check-ins using] [more...]
# # $Id: errorbar.demo,v 3.26 92/03/24 22:32:35 woo Exp Locker: woo $ # # # Requires data file "err.dat" from this directory, # so change current working directory to this directory before running. # gnuplot> set term <term-type> # gnuplot> load 'errorbar.demo' # set title "Demonstration of error bars (both ylow and yhigh, default format)" plot [-3:65] "err.dat" with errorbars pause -1 "Hit return to continue" # this should look the same set title "Demonstration of error bars (both ylow and yhigh)" plot [-3:65] "err.dat" using 1:2:3:4 with errorbars pause -1 "Hit return to continue" set title "Demonstration of error bars (only ydelta)" plot [-3:65] "err.dat" using 1:2:5 with errorbars pause -1 "Hit return to continue" set title "Plot data file twice to get lines and errorbars" plot [-3:65] [6:14] "err.dat" with lines, "err.dat" using 1:2:4:3 with errorbars set title "" set autoscale pause -1 "Hit return to continue"