# # $Id: errorbar.dem%v 3.38.2.114 1993/04/15 01:48:40 woo Exp woo $ # # 31 Mar 1993 Modified by Daniel S. Lewart (d-lewart@uiuc.edu) # set xrange [-3:65] set yrange [ 4:14] set title "Demonstration of error bars (both ylow and yhigh, default format)" plot "/home/longa/www/gnuplot/WAVES/data/errorbar.dat" with errorbars # this should look the same set title "Demonstration of error bars (both ylow and yhigh)" plot "/home/longa/www/gnuplot/WAVES/data/errorbar.dat" \ using 1:2:3:4 with errorbars set title "Demonstration of error bars (only ydelta)" plot "/home/longa/www/gnuplot/WAVES/data/errorbar.dat" \ using 1:2:5 with errorbars set title "Plot data file twice to get lines and errorbars" plot "/home/longa/www/gnuplot/WAVES/data/errorbar.dat" with lines, "/home/longa/www/gnuplot/WAVES/data/errorbar.dat" \ using 1:2:3:4 with errorbars set logscale y set title "Demonstration of error bars (only ydelta) with y logscale" plot [-3:65] [1:100] "/home/longa/www/gnuplot/WAVES/data/errorbar.dat" \ using 1:2:5 with errorbars set nologscale y set logscale x set title "Demonstration of error bars (only ydelta) with x logscale" plot [1:100] [4:14] "/home/longa/www/gnuplot/WAVES/data/errorbar.dat" \ using 1:2:5 with errorbars