1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
# ex_barchart1.ppl
#
# The code in this file is part of Pyxplot
# <http://www.pyxplot.org.uk>
#
# Copyright (C) 2006-2012 Dominic Ford <coders@pyxplot.org.uk>
# 2008-2012 Ross Church
#
# $Id: ex_barchart1.ppl 1261 2012-07-11 21:38:05Z dcf21 $
#
# Pyxplot is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# You should have received a copy of the GNU General Public License along with
# Pyxplot; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA
# ----------------------------------------------------------------------------
# This script produces a figure for the Pyxplot Users' Guide
# Call common initialisation script
reset
title = "ex_barchart1"
load "examples/fig_init.ppl"
set term color
set multiplot
set nodisplay
width=5.4
set width width
set xrange [0:23.999]
set yrange [0:0.11]
set nokey
set texthalign left
set textvalign center
# Plot 1 (bottom left)
set xlabel "$x$"
set ylabel ""
set label 1 "(e) fsteps" at graph width*0.03 , graph width/goldenRatio*0.9
plot "examples/ex_barchart1.dat" with fsteps, "" with points
set axis x linked item 1 x
set axis y linked item 1 y
# Plot 2 (bottom right)
set origin 1*width, 0*width/goldenRatio
set yformat ""
set label 1 "(f) histeps" at graph width*0.03 , graph width/goldenRatio*0.9
plot "examples/ex_barchart1.dat" with histeps, "" with points
# Plot 3 (middle left)
set origin 0*width, 1*width/goldenRatio
set xformat "" ; set xlabel ""
unset yformat ; set ylabel texify("poissonPDF(x,18)")
set label 1 "(c) impulses" at graph width*0.03 , graph width/goldenRatio*0.9
plot "examples/ex_barchart1.dat" with impulses, "" with points
# Plot 4 (middle right)
set origin 1*width, 1*width/goldenRatio
set yformat "" ; set ylabel ""
set label 1 "(d) steps" at graph width*0.03 , graph width/goldenRatio*0.9
plot "examples/ex_barchart1.dat" with steps, "" with points
# Plot 5 (top left)
set origin 0*width, 2*width/goldenRatio
unset yformat
set label 1 "(a) boxes" at graph width*0.03 , graph width/goldenRatio*0.9
plot "examples/ex_barchart1.dat" with boxes, "" with points
# Plot 6 (top right)
set origin 1*width, 2*width/goldenRatio
set boxfrom 0.03
set yformat "" ; set ylabel ""
set label 1 "(b) boxes" at graph width*0.03 , graph width/goldenRatio*0.9
plot "examples/ex_barchart1.dat" with boxes, "" with points
# Now that we are finished preparing multiplot, turn display on
set display
refresh
# Call common cleanup script
load "examples/fig_end.ppl"
|