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
|
# ex_barchart2.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_barchart2.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_barchart2"
load "examples/fig_init.ppl"
set term color
set multiplot
set nodisplay
width=5.4
set width width
set xrange [0.1:10.4]
set yrange [0:1.1]
set nokey
# Plot 1 (bottom left)
set origin 0*width, 0*width/goldenRatio
set xlabel '$x$'
set ylabel '$y$'
set label 1 '(c)' 8.2,0.9
plot 'examples/ex_barchart2.dat' with wboxes
# Plot 2 (top left)
set origin 0*width, 1*width/goldenRatio
set axis x linked item 1 x
set axis y linked item 1 y
set xformat ""
set xlabel ""
set label 1 '(a)' 8.2,0.9
plot 'examples/ex_barchart2.dat' with boxes
# Plot 3 (bottom right)
set origin 1*width, 0*width/goldenRatio
set xlabel '$x$'
unset xformat
set yformat ""
set ylabel ""
set boxwidth 0.0
set boxfrom 0.5
set samples 40
set label 1 '(d)' 8.2,0.9
plot sin(x)*sin(x) with boxes fc 3 c 1, \
cos(x)*cos(x) with boxes fc 2 c 1
# Plot 4 (top right)
set origin 1*width, 1*width/goldenRatio
set xformat ""
set xlabel ""
set boxwidth 0.4
unset boxfrom
set label 1 '(b)' 8.2,0.9
plot 'examples/ex_barchart2.dat' with boxes fc 2
# Now that we are finished preparing multiplot,
# turn display on
set display
refresh
# Call common cleanup script
load "examples/fig_end.ppl"
|