This HTML automatically generated with rman for NEMO
Table of Contents
tabplot2 - compare two tables
tabplot2 [parameter=value]
tabplot2 shares most parameters with tabplot(1NEMO)
, except
for binning, which is not implemented here. Instead there are two input
tables, and each table needs an X column and Y column. This can also mean
the two input tables are the same, but different X or Y columns are compared,
or two different tables, with the same X and Y column (which is the default)
The following parameters are recognized in order; they may
be given in any order if the keyword is also given. Use --help to confirm
this man page is up to date.
- in1=
- Input first table [???]
- in2=
- Input
second table [???]
- xcol=
- x coordinate column(s(). Up to two columns
can be given [1,1]
- ycol=
- y coordinate column(s(). Up to two columns can
be given [2,2]
- xmin=
- X-min value if not autoscaled []
- xmax=
- X-max value
if not autoscaled []
- ymin=
- Y-min value if not autoscaled []
- ymax=
- Y-max
value if not autoscaled []
- point=
- point type and size pairs for each
table
- line=
- line width and style pairs for each table
- color=
- colors for
the symbols/lines for each table []
- xlab=
- Label along X-axis []
- ylab=
- Label along Y-axis []
- xcoord=
- Draw additional vertical coordinate lines
along these X
- ycoord=
- Draw additional horizontal coordinate lines along
these Y
- xbox=
- extent of frame in x direction [2.0:18.0]
- ybox=
- extent of
frame in y direction [2.0:18.0]
- nxticks=
- Number of ticks on X axis [7]
- nyticks=
- Number of ticks on Y axis [7]
- xscale=
- Scale all X values by this
[1]
- yscale=
- Scale all Y values by this [1]
- headline=
- headline in graph
on top right []
- fullscale=
- Use full autoscale in one axis if other
- cursor=
- Optional output file to retrieve cursor coordinates []
- backtrack=
- Allow
backtrack in line= option [t]
- layout=
- Optional input layout file []
- first=
- Layout first or last? [f]
- readline=
- Interactively reading commands
[f]
- pyplot=
- Template python plotting script []
Here is
an example comparing column 2 and 3 from the same file:
tabgen - 20 3 | sort -n > random.tab
tabplot2 random.tab random.tab 1 2,3 line=1,1 color=2,4 point=2,0.1
tabplot(1NEMO)
, table(5NEMO)
Peter Teuben
15-feb-2024m Quick and Dirty conversion from tabplot PJT
Table of Contents