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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
|
% first_steps.tex
%
% The documentation 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: first_steps.tex 1302 2012-09-05 17:30:27Z 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
% ----------------------------------------------------------------------------
% LaTeX source for the Pyxplot Users' Guide
\chapter{First steps with Pyxplot}
\label{ch:first_steps}
This chapter provides an overview of the commands used to produce plots in
Pyxplot. The commands it covers have very similar syntax to \gnuplot; if you
have used \gnuplot\ in the past, you can find an approximate list of
differences between Pyxplot and \gnuplot\ in Appendix~\ref{ch:gnuplot_diffs}.
The introduction to plotting provided by this chapter will be extended in
Chapter~\ref{ch:plotting}, which is a complete guide to Pyxplot's plot styles.
\section{Getting started}
The simplest way to start Pyxplot is to type {\tt pyxplot} at a shell prompt.
This starts an interactive session, and produces a Pyxplot command-line prompt
into which commands can be typed. Pyxplot can be exited either by typing
\indcmdts{exit}, \indcmdts{quit}, or by pressing CTRL-D. Various switches can
be specified on the shell command line to modify Pyxplot's behaviour; these are
listed in Box~\ref{box:CommandSwitches}. Of particular interest may be the
switches {\tt -c} and {\tt -m}, which change between the use of
color-highlighted (default) and non-colored text.
Typing commands into interactive terminals is likely to be a sufficient way for
a beginner to drive Pyxplot, but as tasks grow more complicated, more commands
are needed to set up plots. It is likely to become preferable to store
these commands in text files called {\it scripts}. Once such a script has been
written, it can be executed automatically by passing the filename of the
command script to Pyxplot on the shell command line, for
example:\index{command-line syntax}
\begin{verbatim}
pyxplot foo.ppl
\end{verbatim}
\boxout{A list of the command line options accepted by Pyxplot.}{box:CommandSwitches}{
From the shell command line, Pyxplot accepts the following switches which
modify its behaviour:\index{command line syntax}
\vspace{0.5cm}
\begin{tabular}{p{3.0cm}p{8.3cm}}
{\tt -h --help} & Display a short help message listing the available command-line switches.\\
{\tt -v --version} & Display the current version number of Pyxplot.\\
{\tt -q --quiet} & Turn off the display of the welcome message on startup. \\
{\tt -V --verbose} & Display the welcome message on startup, as happens by default. \\
{\tt -c --color} & Use color highlighting\footnote{This will only function on terminals which support color output.}, as is the default behaviour, to display output in green, warning messages in amber, and error messages in red.\footnote{The authors apologise to those members of the population who are red/green color blind, but draw their attention to the following sentence.} These colors can be changed in the {\tt terminal} section of the configuration file; see Section~\ref{sec:configfile_terminal} for more details. \\
{\tt -m --monochrome} & Do not use color highlighting. \\
\end{tabular}
}
\noindent In this case, Pyxplot executes the commands in the file {\tt
foo.ppl} and then exits. By convention, we affix the suffix {\tt
.ppl} to the filenames of all Pyxplot command scripts. This is not strictly
necessary, but it allows Pyxplot scripts to be easily distinguished from other
text files in a filing system. The filenames of several command scripts may be
passed to Pyxplot on a single command line, indicating that they should be
executed in sequence, as in the example:
\begin{verbatim}
pyxplot foo1.ppl foo2.ppl foo3.ppl
\end{verbatim}
It is also possible to have a single Pyxplot session alternate between running
command scripts autonomously and allowing the user to enter commands
interactively. There are two ways of doing this. Pyxplot can be passed the
magic filename {\tt --} on the command line, as in the example
\begin{verbatim}
pyxplot foo1.ppl -- foo2.ppl
\end{verbatim}
\noindent where the {\tt --} represents an interactive session which commences
after the execution of {\tt foo1.ppl} and should be terminated by the user in
the usual way, using either the \indcmdts{exit} or \indcmdts{quit} commands.
After the interactive session is finished, Pyxplot will automatically execute
the command script {\tt foo2.ppl}.
From within an interactive session, it is possible to run a command script
using the \indcmdt{load}, as in the example:
\vspace{3mm}
\noindent\texttt{pyxplot> \textbf{load 'foo.ppl'}}
\vspace{3mm}
\noindent This example would have the same effect as typing the contents of the
file {\tt foo.ppl} into the present interactive terminal.
The \indcmdt{save} may assist in producing Pyxplot command scripts: it stores
to a text file a history of the commands which have been typed into the present
interactive session.
\boxout{The storage of command histories in Pyxplot.}{box:CommandHistory}{
When Pyxplot is used interactively, its command-line environment is based upon
the GNU Readline Library. This means that the up- and down-arrow keys can be
used to repeat or modify previously executed commands. Each user's command
history is stored in his homespace in a history file called {\tt
.pyxplot\_history}; this file is used by Pyxplot to remember command histories
between sessions. Pyxplot's \indcmdt{save} allows the user to save to a text
file a list of the commands which have been typed into the present session, as
in the following example:\vspace{3mm}
\noindent {\tt save 'output\_filename.ppl' }\vspace{3mm}
The related \indcmdt{history} displays on the terminal a history of all of the
commands which have been typed into this and previous interactive sessions. The
total history can stretch to several hundred lines long, in which case it can
be useful to follow the \indcmdt{history} by an optional number, whereupon it
only displays the last $n$ commands, e.g.:\vspace{3mm}
\noindent {\tt history 20 }
}
\section{First plots}
\label{sec:first_plots}
The core graph-plotting command of Pyxplot is the \indcmdt{plot}. The following
simple example plots the trigonometric function $\sin(x)$:
\begin{verbatim}
plot sin(x)
\end{verbatim}
\begin{center}
\includegraphics[width=8cm]{examples/eps/ex_intro_sine}
\end{center}
\noindent This is one of a large number of standard mathematical functions
which are built into Pyxplot; a complete alphabetical list of them can be found
in Chapter~\ref{ch:function_list}.
It is also possible to plot data stored in files. The following would plot data
from a file {\tt data.dat}, taking the $x$-coordinate of each point from the
first column of the \datafile, and the $y$-coordinate from the second. The
\datafile\ is assumed to be in plain text format\footnote{If the filename of a
\datafile\ ends with a {\tt .gz} suffix, it is assuming to be gzipped
plaintext, and is decoded accordingly. Other formats of \datafile\ can be
opened with the use of input filters; see Section~\ref{sec:filters}.}, with
columns separated by whitespace and/or commas\footnote{This format is
compatible with the Comma Separated Values (CSV) format produced by many
applications such as Microsoft Excel.}\index{csv files}\index{spreadsheets,
importing data from}\index{Microsoft Excel}\index{gzip}:
\begin{verbatim}
plot 'data.dat'
\end{verbatim}
Several items can be plotted on the same graph by separating them by commas, as
in
\begin{verbatim}
plot 'data.dat', sin(x), cos(x)
\end{verbatim}
\noindent and it is possible to define one's own variables and functions,
and then plot them, as in the example
\begin{verbatim}
a = 0.02
b = -1
c = 5
f(x) = a*(x**3) + b*x + c
plot f(x)
\end{verbatim}
\begin{center}
\includegraphics[width=8cm]{examples/eps/ex_intro_func}
\end{center}
Pyxplot supports almost all of the same mathematical operators as the C
programming language; a complete list of them can be found in
Table~\ref{tab:operators_table}.\index{functions!pre-defined}\index{operators}
If you have experience of similar tricks in C, it is quite possible to write
the following expressions in Pyxplot (but don't worry if this is a little over
your head):
\vspace{3mm}
\input{fragments/tex/fs_operators.tex}
\vspace{3mm}
\noindent In the final example, the comma operator is used as in C, to return
only the value of the final comma-separated expression.
\begin{table}
\begin{center}
\begin{tabular}{|>{\columncolor{LightGrey}}l>{\columncolor{LightGrey}}l>{\columncolor{LightGrey}}l|}
\hline
{\bf Symbol} & {\bf Description} & {\bf Operator Associativity} \\
\hline % level 2
{\tt **} & Algebraic exponentiation & right-to-left \\
\hline % level 3
{\tt -} & Unary minus sign & right-to-left \\
{\tt --} & Unary decrement & right-to-left \\
{\tt +} & Unary plus sign & right-to-left \\
{\tt ++} & Unary increment & right-to-left \\
{\tt not~~!} & Logical not & right-to-left \\
{\tt $\sim$} & Unary one's complement & right-to-left \\
\hline % level 5
{\tt *} & Algebraic multiplication & left-to-right \\
{\tt /} & Algebraic division & left-to-right \\
{\tt \%} & Modulo operator & left-to-right \\
\hline % level 6
{\tt +} & Algebraic sum & left-to-right \\
{\tt -} & Algebraic subtraction & left-to-right \\
\hline % level 7
{\tt <<} & Left binary shift & left-to-right \\
{\tt >>} & Right binary shift & left-to-right \\
\hline % level 8
{\tt <} & Magnitude comparison & right-to-left \\
{\tt >} & Magnitude comparison & right-to-left \\
{\tt <=} & Magnitude comparison & right-to-left \\
{\tt >=} & Magnitude comparison & right-to-left \\
\hline % level 9
{\tt ==~~<>} & Equality comparison & right-to-left \\
{\tt !=} & Equality comparison & right-to-left \\
\hline % level 11
{\tt \&} & Binary and & left-to-right \\
\hline % level 12
{\tt \^{}} & Binary exclusive or & left-to-right \\
\hline % level 13
{\tt |} & Binary or & left-to-right \\
\hline % level 14
{\tt and~~\&\&} & Logical and & left-to-right \\
\hline % level 15
{\tt or~~||} & Logical or & left-to-right \\
\hline % level 16
{\tt ?:} & Ternary conditional & right-to-left \\
\hline % level 17
{\tt =} & Assignment operator & right-to-left \\
{\tt += -= *= } & Assignment operators & right-to-left \\
{\tt /= \%= \&=} & & \\
{\tt \^{}= |= } & & \\
{\tt <<= >>= } & & \\
\hline % level 18
{\tt ,} & Comma separator & left-to-right \\
\hline
\end{tabular}
\end{center}
\caption{A list of mathematical operators which Pyxplot recognises, in order of
descending precedence. Items separated by horizontal rules are of differing
precedence; those not separated by horizontal rules are of equal
precedence. The third column indicates whether strings of operators are
evaluated from left to right, or from right to left. For
example, the expression {\tt x**y**z} is evaluated as {\tt (x**(y**z))}.}
\label{tab:operators_table}
\end{table}
\section{Comments}
As in any programming language, it is good practice to include comments in your
code, to help other people (including yourself!) to work out what's going on.
Comment lines in Pyxplot scripts should begin with a hash character, as in the
example\index{comment lines}\index{command scripts!comment lines}
\begin{verbatim}
# This is a comment
\end{verbatim}
\noindent Comments may also be placed on the same line as commands, as in the
example
\begin{verbatim}
set nokey # I'll have no key on _my_ plot
\end{verbatim}
\noindent In both cases, all of the characters following the hash character are
ignored.
\section{Splitting long commands}
Long commands may be split over multiple lines, provided that each line of the
command is terminated with a backslash character, whereupon the following line
will be appended to it. For example:
\vspace{3mm}
\input{fragments/tex/fs_longline.tex}
\vspace{3mm}
\noindent Such lines splits are often used in this manual where command lines
are longer than the width of the page.
\section{Printing text}
\label{sec:text_escaping}
Pyxplot's \indcmdt{print} can be used to display strings and the results of
calculations, as in the following examples:
\vspace{3mm}
\input{fragments/tex/fs_print1.tex}
\vspace{3mm}
Multiple items can be displayed one-after-another on a single line by
separating them with commas. The following example displays the values of the
variable {\tt a} and the function {\tt f(a)} in the middle of a text string:
\vspace{3mm}
\input{fragments/tex/fs_print2.tex}
\vspace{3mm}
Strings can be enclosed either in single ({\tt '}) or double ({\tt "}) quotes.
Strings may also be enclosed by three quote characters in a row: either {\tt
\textquoteright\textquoteright\textquoteright} or {\tt """}. Special care needs
to be taken when using apostrophes or quotes in single-quote delimited strings,
as these characters may be misinterpreted as string delimiters, as in the
example:
\begin{dontdo}
'Robert's data'
\end{dontdo}
\noindent This easiest way to avoid such problems is to use three quotes:
\begin{dodo}
\textquoteright\textquoteright\textquoteright Robert's data\textquoteright\textquoteright\textquoteright
\end{dodo}
\noindent Alternatively, the {\tt $\backslash$} character may be used to escape
quote characters. Two backslashes characters -- {\tt $\backslash\backslash$} --
produce a literal backslash:
\begin{dodo}
'Robert$\backslash$'s data'\newline
"I typed $\backslash\backslash$' to get an apostrophe"
\end{dodo}
Special characters such as tabs and newlines can be inserted into strings using
escape codes, but these are disabled by default. This is because \latexdcf\
uses the backslash as its own escape character, and strings in Pyxplot are
commonly used to contain \latexdcf\ commands. So, by default the only escape
characters that Pyxplot expands are {\tt $\backslash$\textquoteright}, {\tt
$\backslash$"} and {\tt $\backslash\backslash$}.
The use of other escape characters may be enabled by prefixing a string with
the character {\tt e}, as in the example {\tt e'$\backslash$t'} for a tab
character. See Table~\ref{tab:escape_sequences} for a complete list of escape
codes available. For example, the following string is split over three lines:
\vspace{3mm}
\input{fragments/tex/fs_print4.tex}
\vspace{3mm}
Alternatively, strings may be prefixed with the character {\tt r} to turn off
all escape codes, including for quote characters:
\vspace{3mm}
\input{fragments/tex/fs_print5.tex}
\vspace{3mm}
\begin{table}
\begin{center}
\begin{tabular}{|>{\columncolor{LightGrey}}l>{\columncolor{LightGrey}}l|}
\hline
{\bf Escape sequence} & {\bf Description} \\
\hline
{\tt $\backslash$?} & Question mark \\
{\tt $\backslash$'} & Apostrophe \\
{\tt $\backslash$"} & Double quote \\
{\tt $\backslash\backslash$} & Literal backslash \\
{\tt $\backslash$a} & Bell character \\
{\tt $\backslash$b} & Backspace \\
{\tt $\backslash$f} & Formfeed \\
{\tt $\backslash$n} & Newline \\
{\tt $\backslash$r} & Carriage return \\
{\tt $\backslash$t} & Horizontal tab \\
{\tt $\backslash$v} & Vertical tab \\
\hline
\end{tabular}
\end{center}
\caption{A complete list of Pyxplot's string escape sequences. These are a subset of those available in C.}
\label{tab:escape_sequences}
\end{table}
When many items are being printed together on a line, they can be concatenated
together using the {\tt +} operator as above, but it is usually neater to use
the string substitution operator, {\tt \%}\index{\% operator@{\tt \%}
operator}\index{string operators!substitution}. The operator is preceded by a
format string, in which the places where numbers and strings are to be
substituted are marked by tokens such as {\tt \%e} and {\tt \%s}.
The substitution operator is followed by a ()-bracketed list of the quantities
which are to be substituted into the format string. This behaviour is similar
to that of python's \% operator, and of the {\tt printf} command in C, as the
following examples demonstrate:
\vspace{3mm}
\input{fragments/tex/fs_print3.tex}
\vspace{3mm}
The detailed behaviour of the string substitution operator, and a full list of
the substitution tokens which it accepts, are given in
Section~\ref{sec:stringsubop}.
\section{Axis labels and titles}
\label{sec:latex_incompatibility}
Labels can be added to the axes of a plot, and a title put at the top. As with
any other strings (see the previous section), labels should be enclosed in
either single (') or double (") quotes, as in the following example script:
\begin{verbatim}
set xlabel "Horizontal axis"
set ylabel "Vertical axis"
set title 'A plot with labelled axes'
plot
\end{verbatim}
\begin{center}
\includegraphics[width=8cm]{examples/eps/ex_axislabs}
\end{center}
\noindent These labels and title -- in fact, all text labels which are ever
produced by Pyxplot -- are rendered using the \latexdcf\ typesetting system, and
so any \latexdcf\ commands can be used to produce custom formatting. This allows
great flexibility, but means that care needs to be taken to escape any of
\latexdcf's reserved characters -- i.e. $\backslash$~\&~\%~\#~\{~\}~\$~\_~\^{} or
$\sim$.
Two built-in functions provide some assistance in generating \latexdcf\ labels.
The \indfunt{texify()} function takes as its argument a string containing a
mathematical expression, and returns a \latexdcf\ representation of it. The
\indfunt{texifyText()} function takes as its argument a text string, and returns
a \latexdcf\ representation of it, with any necessary escape characters added. For
example:
\vspace{3mm}
\input{fragments/tex/fs_texify.tex}
\vspace{3mm}
Special care needs to be taken when typesetting \latexdcf\ expressions that
contain apostrophe or quote characters, as these are the string delimiters used
by Pyxplot. For ease, it is recommended that \latexdcf\ expressions be enclosed in
triple quotes:
\begin{dodo}
set xlabel """$\backslash$textrm\{J$\backslash$"org's data\}"""
\end{dodo}
The reason for recommending this syntax is demonstrated by the examples below,
all of which will fail. In
\begin{dontdo}
set xlabel 'My plot's X axis'
\end{dontdo}
\noindent the apostrophe will be mis-interpreted as a closing quote character. In
\index{backslash character}\index{accented characters}
\begin{dontdo}
set xlabel "J$\backslash$"org's data"
\end{dontdo}
\noindent the backslash before the " character, intended to be the \latexdcf\
control string for an umlaut ({\tt $\backslash$"o}), will instead be
interpreted as a Pyxplot escape character. It will not be passed to \latexdcf,
and a \latexdcf\ error will result. Whilst it is possible to write
\begin{verbatim}
set xlabel "J\\\"org's data"
\end{verbatim}
\noindent this syntax is messy, as the backslashes are confusing to the eye. It
is much neater to use (see Section~\ref{sec:text_escaping} for an explanation
of string escaping):\index{backslash character}\index{accented characters}
\begin{dodo}
set xlabel r"""J$\backslash$"org's data"""
\end{dodo}
There are similar problems with
\begin{dontdo}
set xlabel e"2 $\backslash$times 3"
\end{dontdo}
\noindent where the \texttt{$\backslash$t} will be turned into a tab character,
because extended escape characters are enabled. This string could be made legal
by removing the {\tt e} prefix (see Section~\ref{sec:text_escaping}).
\subsection{Removing labels and titles}
Having set labels and titles, they may be removed thus:
\begin{verbatim}
set xlabel ''
set ylabel ''
set title ''
\end{verbatim}
\noindent These are two other ways of removing the title from a plot:
\begin{verbatim}
set notitle
unset title
\end{verbatim}
The \indcmdt{unset} may be followed by almost any word that can follow the {\tt
set} command, such as {\tt xlabel} or {\tt title}, to return that setting to
its default configuration. The \indcmdt{reset} restores all configurable
parameters to their default states.
\section{Querying the values of settings}
As the previous section has demonstrated, the \indcmdt{set} is used in a wide
range of ways to configure the way in which plots appear; we will meet many
more in due course. The corresponding \indcmdt{show} can be used to query the
current values of settings. To query the value of one particular setting, the
\indcmdt{show} should be followed by the name of the setting, as in the
example:
\begin{verbatim}
show title
\end{verbatim}
\noindent Alternatively, several settings may be queried at once, or all
settings beginning with a certain string of characters can be listed, as in the
following two examples:
\begin{verbatim}
show xlabel ylabel key
show g
\end{verbatim}
\noindent The special keyword {\tt settings} may be used to display the values
of all settings which can be set with the {\tt set} command. A list of other
special keywords which the \indcmdt{show} accepts is given in
Table~\ref{tab:show_keywords}.
\begin{table}
\begin{center}
\begin{tabular}{|>{\columncolor{LightGrey}}l>{\columncolor{LightGrey}}p{9cm}|}
\hline
{\bf Query} & {\bf Description} \\ \hline
{\tt all} & Lists all settings.\\
{\tt axes} & Lists all of the currently configured axes.\\
{\tt functions} & Lists all currently defined mathematical functions, both those which are built into Pyxplot and those which the user has defined.\\
{\tt settings} & Lists the current values of all settings which can be set with the {\tt set} command.\\
{\tt units} & Lists all of the physical units which Pyxplot is currently set up to recognise.\\
{\tt userfunctions} & Lists all current user-defined mathematical functions and subroutines.\\
{\tt variables} & Lists the values of all currently-defined variables.\\
\hline
\end{tabular}
\end{center}
\caption{The special keywords which the \protect\indcmdt{show} recognises.}
\label{tab:show_keywords}
\end{table}
Generally, the \indcmdt{show} displays each setting in the form of a typeable
\indcmdt{set} which could be used to set that setting, together with a comment
to briefly explain what effect the setting has. This means that the output can
be pasted directly into another Pyxplot terminal to copy settings from one
session to another. However, some settings such as {\tt papersize} are only
pastable once the \indcmdt{set numerics typeable} has been issued, for reasons
which will be explained in Section~\ref{sec:pastable}.
When a color-highlighted interactive session is used, settings which have been
changed are highlighted in yellow, whilst those settings which are unchanged
from Pyxplot's default configuration, or from a user-supplied configuration
file, are shown in green.
\section{Plotting \datafile s}
\label{sec:plot_datafiles}
In the simple example of the previous section, we plotted the first column of a
\datafile\ against the second. It is possible to plot any arbitrary column of a
\datafile\ against any other; the syntax for doing this is:\indmod{using}
\begin{verbatim}
plot 'data.dat' using 3:5
\end{verbatim}
\noindent This example would plot the contents of the fifth column of the file
{\tt data.dat} on the vertical axis, against the contents of the third column
on the horizontal axis. As mentioned above, columns in \datafile s can be
separated by whitespace and/or commas. Algebraic expressions may also be used
in place of column numbers, as in the example:
\begin{verbatim}
plot 'data.dat' using (3+$1+$2):(2+$3)
\end{verbatim}
\noindent In such expressions, column numbers are prefixed by dollar signs to
distinguish them from numerical constants. The example above would plot the sum
of the values in the first two columns of the \datafile, plus three, on the
horizontal axis, against two plus the value in the third column on the vertical
axis. The column numbers in such expressions can also be replaced by algebraic
expressions, and so {\tt \$2} can also be written as {\tt \$(2)} or {\tt
\$(1+1)}. In the following example, the \datapoint s are all placed on the
vertical line $x=3$ -- the brackets around the {\tt 3} distinguish it as a
numerical constant rather than a column number -- meanwhile their vertical
positions are drawn from the value of some column $n$ in the \datafile, where
the value of $n$ is itself read from the second column of the \datafile:
\begin{verbatim}
plot 'data.dat' using (3):$($2)
\end{verbatim}
It is also possible to plot data from only selected lines within a \datafile.
When Pyxplot reads a \datafile, it looks for any blank lines in the file. It
divides the \datafile\ up into {\it data blocks}, each being separated from the
next by a single blank line. The first data block is numbered~0, the next~1, and
so on. \index{datafile format}
When two or more blank lines are found together, the \datafile\ is divided up
into {\it index blocks}. The first index block is numbered~0, the next~1, and
so on. Each index block may be made up of a series of data blocks. To clarify
this, a labelled example \datafile\ is shown in
Figure~\ref{fig:sample_datafile}.
\begin{figure}
\begin{center}
\begin{tabular}{|>{\columncolor{LightGrey}}p{2.2cm}>{\columncolor{LightGrey}}l|}
\hline
{\tt 0.0 \ 0.0} & Start of index 0, data block 0. \\
{\tt 1.0 \ 1.0} & \\
{\tt 2.0 \ 2.0} & \\
{\tt 3.0 \ 3.0} & \\
& A single blank line marks the start of a new data block. \\
{\tt 0.0 \ 5.0} & Start of index 0, data block 1. \\
{\tt 1.0 \ 4.0} & \\
{\tt 2.0 \ 2.0} & \\
& A double blank line marks the start of a new index. \\
& ... \\
{\tt 0.0 \ 1.0} & Start of index 1, data block 0. \\
{\tt 1.0 \ 1.0} & \\
& A single blank line marks the start of a new data block. \\
{\tt 0.0 \ 5.0} & Start of index 1, data block 1. \\
& $<$etc$>$ \\
\hline
\end{tabular}
\end{center}
\caption{An example Pyxplot \datafile\ -- the \datafile\ is shown in the two left-hand columns, and commands are shown to the right.}
\label{fig:sample_datafile}
\end{figure}
By default, when a \datafile\ is plotted, all data blocks in all index blocks are
plotted. To plot only the data from one index block, the following syntax may
be used:
\begin{verbatim}
plot 'data.dat' index 1
\end{verbatim}
\noindent To achieve the default behaviour of plotting all index blocks, the
{\tt index} modifier should be followed by a negative number.\indmod{index}
It is also possible to specify which lines and/or data blocks to plot from
within each index. To do so, the \indmodt{every} modifier is used, which takes
up to six values, separated by colons:\label{sec:every}
\begin{verbatim}
plot 'data.dat' every a:b:c:d:e:f
\end{verbatim}
\noindent The values have the following meanings:
\begin{longtable}{p{1.0cm}p{10.5cm}}
$a$ & Plot data only from every $a\,$th line in \datafile. \\
$b$ & Plot only data from every $b\,$th block within each index block. \\
$c$ & Plot only from line $c$ onwards within each block. \\
$d$ & Plot only data from block $d$ onwards within each index block. \\
$e$ & Plot only up to the $e\,$th line within each block. \\
$f$ & Plot only up to the $f\,$th block within each index block. \\
\end{longtable}
\noindent Any or all of these values can be omitted, and so the following are
both valid statements:
\begin{verbatim}
plot 'data.dat' index 1 every 2:3
plot 'data.dat' index 1 every ::3
\end{verbatim}
\noindent The first would plot only every other \datapoint\ from every third
data block. The second would plot data from the third line onwards within every
data block.
\index{comment lines!in datafiles}
Comment lines may be included in \datafile s by prefixing them with a hash
character. Such lines are completely ignored by Pyxplot and do not count
towards the one or two blank lines required to separate blocks and index
blocks. It is often good practice to include comment lines at the top of
\datafile s to indicate their date and source. In
Section~\ref{sec:special_comments} we will see that Pyxplot can read metadata
from some comment lines which follow a particular syntax.
\section{Plotting many \datafile s at once}
\index{globbing}\index{wildcards}\index{datafiles!globbing}
The wildcards {\tt *} and {\tt ?} may be used in filenames supplied to the
\indcmdt{plot} to plot many \datafile s at once. The following command, for
example, plots all \datafile s in the current directory with a {\tt .dat}
suffix, using the same plot options:
\begin{verbatim}
plot '*.dat' with linewidth 2
\end{verbatim}
\noindent In the graph's legend, full filenames are displayed, allowing the
\datafile s to be distinguished.
If a blank filename is supplied to the \indcmdt{plot}, the last used \datafile\
is used again, as in the example:
\begin{verbatim}
plot 'data.dat' using 1:2, '' using 2:3
\end{verbatim}
\noindent This can even be used with wildcards, as in the following example:
\begin{verbatim}
plot '*.dat' using 1:2, '' using 2:3
\end{verbatim}
\subsection{Horizontally arranged \datafile s}
\label{sec:horizontal_datafiles}
\index{horizontal datafiles}\index{datafiles!horizontal}\index{using rows
modifier@{\tt using rows} modifier}\index{using columns modifier@{\tt using
columns} modifier}
Pyxplot also allows rows of data to be plotted against one another. To do so,
the keyword \indkeyt{rows} is placed after the {\tt using} modifier:
\begin{verbatim}
plot 'data.dat' index 1 using rows 1:2
\end{verbatim}
\noindent For completeness, the syntax {\tt using} \indkeyt{columns} is also
accepted, specifying that columns should be plotted against one another, as
happens by default:
\begin{verbatim}
plot 'data.dat' index 1 using columns 1:2
\end{verbatim}
When plotting horizontally-arranged \datafile s, the meanings of the {\tt
index} and {\tt every} modifiers are altered slightly. The former continues to
refer to vertically-displaced blocks of data separated by two blank lines.
Blocks, as referenced in the {\tt every} modifier, likewise continue to refer
to vertically-displaced blocks of \datapoint s, separated by single blank
lines. The row numbers passed to the {\tt using} modifier are counted from the
top of the current block.
However, the line numbers specified in the \indmodt{every} modifier -- i.e.\
variables $a$, $c$ and $e$ in the system introduced in the previous section --
now refer to vertical column numbers. For example,
\begin{verbatim}
plot 'data.dat' using rows 1:2 every 2::3::9
\end{verbatim}
\noindent would plot the data in row~2 against that in row~1, using only the
values in every other column, between columns~3 and~9.
\subsection{Choosing which data to plot}
\label{sec:select_modifier}
The final modifier which the {\tt plot} command takes to allow the user to
specify which subset(s) of a \datafile\ should be plotted is \indmodt{select}.
This can be used to plot only those \datapoint s in a \datafile\ which satisfy
some given criterion, as in the following examples:
\begin{verbatim}
plot 'data.dat' select ($8>5)
plot sin(x) select (($1>0) and ($2>0))
\end{verbatim}
\noindent In the second example, two selection criteria are given, combined
with the logical {\tt and} operator. A full list of all of the operators
recognised by Pyxplot, including logical operators, was given in
Table~\ref{tab:operators_table}.
When plotting using \indpst{lines} to connect the \datapoint s (see
Section~\ref{sec:plotting_styles} for more information about Pyxplot's plotting
styles), the default behaviour is for the lines not to be broken if a set of
\datapoint s are removed by the {\tt select} modifier. However, this behaviour
is sometimes undesirable. To cause the plotted line to break when points are
removed the \indmodt{discontinuous}\ modifier is supplied after the {\tt
select} modifier, as in the example
\begin{verbatim}
plot sin(x) select ($2>0) discontinuous
\end{verbatim}
\noindent which plots a set of disconnected peaks from the sine function.
\section{The {\tt replot} command}
\label{sec:replot}
The \indcmdt{replot} may be used to add more datasets to an existing plot, or
to change its axis ranges. For example, having plotted one \datafile\ using the
command
\begin{verbatim}
plot 'datafile1.dat'
\end{verbatim}
\noindent another can be plotted on the same axes using the command
\begin{verbatim}
replot 'datafile2.dat' using 1:3
\end{verbatim}
\noindent or the ranges of the axes on the original plot can be changed using
the command
\begin{verbatim}
replot [0:1][0:1]
\end{verbatim}
\section{Directing where output goes}
\label{sec:directing_output}
By default, when Pyxplot is used interactively, all plots are displayed on the
screen. It is also possible to produce PostScript output, to be read into other
programs or embedded into \latexdcf\ documents, as well as a variety of other
graphical formats such as jpeg and png. The \indcmdt{set
terminal}\footnote{Gnuplot users should note that the syntax of the {\tt set
terminal} command in Pyxplot is somewhat different from that used by Gnuplot;
see Section~\ref{sec:set_terminal}.} is used to specify the output format that
is required, and the \indcmdt{set output} is used to specify the file to which
output should be directed. For example,
\begin{verbatim}
set terminal pdf
set output 'myplot.pdf'
plot 'datafile.dat'
\end{verbatim}
\noindent would output a PDF plot of data from the file {\tt datafile.dat} to the file
{\tt myplot.pdf}, which could be opened in Adobe Reader.
The \indcmdt{set terminal} can also be used to configure various output options
within each supported file format. For example, the following commands would
produce black-and-white or color output respectively:
\begin{verbatim}
set terminal monochrome
set terminal color
\end{verbatim}
\noindent The former is useful for preparing plots for black-and-white
publications, the latter for preparing plots for colorful presentations.
Both PostScript and Encapsulated PostScript can be produced. The former is
recommended for producing figures to embed into documents, the latter for plots
which are to be printed without further processing. The {\tt postscript}
terminal produces the latter; the {\tt eps} terminal should be used to produce
the former. Similarly the {\tt pdf} terminal produces files in the Portable
Document Format (PDF)\index{pdf format} read by Adobe Acrobat\index{Adobe
Acrobat}:
\begin{verbatim}
set terminal postscript
set terminal eps
set terminal pdf
\end{verbatim}
It is also possible to produce plots in the gif, png and jpeg graphic formats,
as follows:
\begin{verbatim}
set terminal gif
set terminal png
set terminal jpg
\end{verbatim}
More than one of the above keywords can be combined on a single line, for
example:
\begin{verbatim}
set terminal postscript color
set terminal gif monochrome
\end{verbatim}
To return to the default state of displaying plots on screen, the {\tt x11}
terminal should be selected:
\begin{verbatim}
set terminal x11
\end{verbatim}
After changing terminals, the \indcmdt{refresh}\footnote{The effect of the {\tt
refresh} command is very similar to that of the {\tt replot} command with no
arguments. The latter simply repeats the last {\tt plot} command. We will see
in Chapter~\ref{ch:vector_graphics} that the {\tt refresh} command is to be
preferred in the current context because it is applicable to vector graphics as
well as to graphs.} is especially useful; it reproduces the last plot to have
been generated in the newly-selected graphical format. For more details of the
\indcmdt{set terminal}, including how to produce gif and png images with
transparent backgrounds, see Chapter~\ref{ch:image_formats}.
\section{Setting the size of output}
The widths of plots may be set by means of two commands -- {\tt set
size}\indcmd{set size} and {\tt set width}\indcmd{set width}. Both are
equivalent, and should be followed by the desired width measured in
centimeters, for example:
\begin{verbatim}
set width 20
\end{verbatim}
The {\tt set size} command can also be used to set the aspect ratio of plots by
following it with the keyword {\tt ratio}\indcmd{set size ratio}. The number
which follows should be the desired ratio of height to width. The following,
for example, would produce plots three times as high as they are wide:
\begin{verbatim}
set size ratio 3.0
\end{verbatim}
\noindent The command {\tt set size noratio} returns to Pyxplot's default
aspect ratio of the golden ratio, i.e.\ $\left((1+\sqrt{5})/2\right)^{-1}$. The
special command {\tt set size square}\indcmd{set size square} sets the aspect
ratio to unity (i.e.\ square).
\section{Plotting styles}
\label{sec:plotting_styles}
By default, data from files are plotted with points and functions are plotted
with lines. However, either kind of data can be plotted in a variety of {\it
plot styles}. To plot a function with points, for example, the following
syntax is used:
\begin{verbatim}
plot sin(x) with points
\end{verbatim}
\noindent The number of points displayed (i.e.\ the number of samples of the
function) can be set as follows\indcmd{set samples}:
\begin{verbatim}
set samples 100
\end{verbatim}
\noindent Likewise, \datafile s can be plotted with a line connecting the
\datapoint s:
\begin{verbatim}
plot 'data.dat' with lines
\end{verbatim}
A variety of other styles are available. The \indpst{linespoints} plot style
combines both the \indpst{points} and \indpst{lines} styles, drawing lines
through points. Error bars can also be drawn as follows:\indps{yerrorbars}
\begin{verbatim}
plot 'data.dat' with yerrorbars
\end{verbatim}
\noindent In this case, three columns of data need to be specified: the $x$-
and $y$-coordinates of each \datapoint, plus the size of the vertical error bar
on that \datapoint. By default, the first three columns of the \datafile\ are
used, but as elsewhere (see Section~\ref{sec:plot_datafiles}), the {\tt using}
modifier can be used:
\begin{verbatim}
plot 'data.dat' using 2:3:7 with yerrorbars
\end{verbatim}
Other plot styles supported by Pyxplot are listed in
Section~\ref{sec:list_of_plotstyles}. More details of the {\tt errorbars} plot
style can be found in Section~\ref{sec:errorbars}. Bar charts will be discussed
in Section~\ref{sec:barcharts}.
\label{sec:pointtype}
The modifiers \indpst{pointtype} and \indpst{linetype}, which can be
abbreviated to {\tt pt} and {\tt lt} respectively, can also be placed after the
{\tt with} modifier. Each should be followed by an integer. The former
specifies what shape of points should be used to plot the dataset, and the
latter whether a line should be continuous, dotted, dash-dotted, etc.
Different integers correspond to different styles, and are listed in
Chapter~\ref{ch:linetypes_table}.
The default plotting style, used when none is specified to the {\tt plot}
command, can also be changed. For example:\indcmd{set style data}
\begin{verbatim}
set style data lines
\end{verbatim}
\noindent would change the default style used for plotting data from files to
{\tt lines}. Similarly, the \indcmdt{set style function} changes the default
style used when functions are plotted.
\section{Setting axis ranges}
\label{sec:plot_ranges}
By default, Pyxplot automatically scales axes to some sensible range which
contains all of the plotted data. However, it is possible for the user to
override this and set his own range.\index{axes!setting ranges} This can be
done directly from the {\tt plot} command, by following the word {\tt plot}
with the syntax {\tt [minimum:maximum]}.\footnote{An alternative valid syntax
is to replace the colon with the word {\tt to}, i.e.\ {\tt [minimum to
maximum]}.} The first specified range applies to the {\tt x}-axis, and the
second to the {\tt y}-axis.\footnote{As will be discussed in
Section~\ref{sec:multiple_axes}, if further ranges are specified, they apply to
the {\tt x2}-axis, then the {\tt y2}-axis, and so forth.} In the following
example, the first three cylindrical Bessel functions are plotted in the range
$0<x<10$:
\begin{verbatim}
plot [0:10][-0.5:1] besselJ(0,x), besselJ(1,x), besselJ(2,x)
\end{verbatim}
\begin{center}
\includegraphics[width=8cm]{examples/eps/ex_intro_bessel}
\end{center}
\noindent Any of the values can be omitted, as in the following plot of
three Legendre polynomials:
\begin{verbatim}
set key xcenter
plot [-1:1][:] legendreP(2,x), legendreP(4,x), legendreP(6,x)
\end{verbatim}
\begin{center}
\includegraphics[width=8cm]{examples/eps/ex_intro_legendre}
\end{center}
\noindent Here, we have used the {\tt set key} command to specify that the
plot's legend should be horizontally aligned in the center of the plot, to
complement the symmetry of the Legendre polynomials. This command will be
described more fully in Section~\ref{sec:legends}.
Alternatively, ranges can be set before the {\tt plot} statement, using the
\indcmdt{set xrange}, as in the examples:
\begin{verbatim}
set xrange [-2:2]
set yrange [a:b]
\end{verbatim}
If an asterisk is supplied in place of either of the limits in this command, then
any limit which had previously been set is switched off, and the axis returns to
its default autoscaling behaviour:
\begin{verbatim}
set xrange [-2:*]
\end{verbatim}
\noindent A similar effect may be obtained using the \indcmdt{set autoscale},
which takes a list of the axes to which it is to apply. Both the upper and
lower limits of these axes are set to scale automatically. If no list is
supplied, then the command is applied to all axes.
\begin{verbatim}
set autoscale x y
set autoscale
\end{verbatim}
The range supplied to the {\tt set xrange} can be followed by the word {\tt
reverse} to indicate that the axis should run from right-to-left, or from
top-to-bottom. In practice, this is of limited use when an explicit range is
specified, as the following two commands are equivalent:
\begin{verbatim}
set xrange [-2:2] reverse
set xrange [2:-2] noreverse
\end{verbatim}
\noindent However, this is useful when axes are set to autoscale:
\begin{verbatim}
set xrange [*:*] reverse
\end{verbatim}
Axes can be set to have logarithmic scales by using the \indcmdt{set logscale},
which also takes a list of axes to which it should apply. Its converse is
\indcmdts{set nologscale}:
\begin{verbatim}
set logscale
set nologscale y x x2
\end{verbatim}
Further discussion of the configuration of axes can be found in
Section~\ref{sec:multiple_axes}.
\example{ex:axislab}{A diagram of the trajectories of projectiles fired with different initial velocities}{
In this example we produce a diagram of the trajectories of projectiles fired
by a cannon at the origin with different initial velocities $v$ and different
angles of inclination $\theta$. According to the equations of motion under
constant acceleration, the distance of such a projectile from the origin after
time $t$ is given by
\begin{eqnarray*}
x(t) & = & vt\cos\,\theta \\
h(t) & = & vt\sin\,\theta + \nicefrac{1}{2}gt^2 \\
\end{eqnarray*}
where $x(t)$ is the horizontal displacement of the projectile and $h(t)$ the
vertical displacement. Eliminating $t$ from these equation gives the expression
\begin{displaymath}
h(x) = x\tan\,\theta - \frac{gx^2}{2v^2\cos^2\,\theta}.
\end{displaymath}
\nlscf
In the script below, we plot this function for five different values of $v$ and
$\theta$.
\nlscf
\input{examples/tex/ex_trajectories_1.tex}
\nlscf
\begin{center}
\includegraphics{examples/eps/ex_trajectories}
\end{center}
\nlscf
}
\section{Interactive help}
In addition to this {\it Users' Guide}, Pyxplot also has a \indcmdt{help},
which provides a hierarchical source of information. Typing {\tt help} alone
gives a brief introduction to the help system, as well as a list of topics
about which help is available. To display help on any given topic, type {\tt
help} followed by the name of the topic. For example,
\begin{verbatim}
help datafile
\end{verbatim}
\noindent provides information on the format in which Pyxplot expects to read
\datafile s and
\begin{verbatim}
help plot
\end{verbatim}
\noindent provides information about the {\tt plot} command. Some topics have
sub-topics, which are listed at the end of each page. To view them, add further
words to the end of your help request -- an example might be
\begin{verbatim}
help set title
\end{verbatim}
|