Man page - stilts-plot2d(1)
Packages contas this manual
- stilts-mocshape(1)
- stilts-tskymap(1)
- stilts-calc(1)
- stilts(1)
- stilts-tskymatch2(1)
- stilts-cone(1)
- stilts-funcs(1)
- stilts-tmatchn(1)
- stilts-plot3d(1)
- stilts-taplint(1)
- stilts-tgroup(1)
- stilts-cdsskymatch(1)
- stilts-coneskymatch(1)
- stilts-regquery(1)
- stilts-tapresume(1)
- stilts-tmatch1(1)
- stilts-tcat(1)
- stilts-plot2corner(1)
- stilts-votcopy(1)
- stilts-tpipe(1)
- stilts-tcopy(1)
- stilts-arrayjoin(1)
- stilts-tgridmap(1)
- stilts-pixfoot(1)
- stilts-tmulti(1)
- stilts-plot2plane(1)
- stilts-plot2d(1)
- stilts-sqlupdate(1)
- stilts-tjoin(1)
- stilts-sqlclient(1)
- stilts-tmatch2(1)
- stilts-plot2time(1)
- stilts-datalinklint(1)
- stilts-plot2cube(1)
- stilts-tapquery(1)
- stilts-xsdvalidate(1)
- stilts-tapskymatch(1)
- stilts-votlint(1)
- stilts-plot2sky(1)
- stilts-tloop(1)
- stilts-plothist(1)
- stilts-tcatn(1)
- stilts-plot2sphere(1)
- stilts-pixsample(1)
- stilts-tcube(1)
- stilts-sqlskymatch(1)
- stilts-tmultin(1)
apt-get install stilts
Manual
| STILTS-PLOT2D(1) | Stilts commands | STILTS-PLOT2D(1) |
NAME
stilts-plot2d - Old-style 2D Scatter Plot
SYNOPSIS
stilts plot2d [xpix=<int-value>] [ypix=<int-value>] [font=dialog|serif|...] [fontsize=<int-value>] [fontstyle=plain|bold|italic|bold-italic] [legend=true|false] [title=<value>] [omode=swing|out|cgi|discard|auto] [out=<out-file>] [ofmt=png|png-transp|gif|jpeg|pdf|svg|eps|eps-gzip] [inN=<table>] [ifmtN=<in-format>] [istreamN=true|false] [cmdN=<cmds>] [xdataN=<expr>] [ydataN=<expr>] [auxdataN=<expr>] [xlo=<float-value>] [ylo=<float-value>] [auxlo=<float-value>] [xhi=<float-value>] [yhi=<float-value>] [auxhi=<float-value>] [xlog=true|false] [ylog=true|false] [auxlog=true|false] [xflip=true|false] [yflip=true|false] [auxflip=true|false] [xlabel=<value>] [ylabel=<value>] [auxlabel=<value>] [xerrorN=<expr>|[<lo-expr>],[<hi-expr>]] [yerrorN=<expr>|[<lo-expr>],[<hi-expr>]] [auxshader=rainbow|pastel|...] [txtlabelN=<value>] [subsetNS=<expr>] [nameNS=<value>] [colourNS=<rrggbb>|red|blue|...] [shapeNS=filled_circle|open_circle|...] [sizeNS=<int-value>] [transparencyNS=<int-value>] [lineNS=DotToDot|LinearRegression] [linewidthNS=<int-value>] [dashNS=dot|dash|...|<a,b,...>] [hideNS=true|false] [errstyleNS=lines|capped_lines|...] [grid=true|false] [antialias=true|false] [sequence=<suffix>,<suffix>,...]
DESCRIPTION
This section describes a deprecated command. It still works, but you are advised to use the more capable plot2plane instead.
plot2d performs two-dimensional scatter plots, sending the output to a graphical display or writing it to a file in some vector or bitmapped graphics format. You need to supply it with values for one or more X and Y datasets, in terms of table columns, and it will generate a plot with a point for each row. There are many options available to configure the detailed appearance of the plot, but in its simplest form invocation is quite straightforward. See SUN/256 for more discussion on use of the plotting commands.
OPTIONS
- serif
- sansserif
- monospaced
- dialog
- dialoginput
as well as a range of system-dependent fonts, possibly including
- dejavu_sans
- dejavu_sans_mono
- dejavu_serif
- swing: Plot will be displayed in a window on the screen. This plot is "live"; it can be resized and (except for old-style plots) navigated around with mouse actions in the same way as plots in TOPCAT.
- out: Plot will be written to a file given by out using the graphics format given by ofmt.
- cgi: Plot will be written in a way suitable for CGI use direct from a web server. The output is in the graphics format given by ofmt, preceded by a suitable "Content-type" declaration.
- discard: Plot is drawn, but discarded. There is no output.
- auto: Behaves as swing or out mode depending on presence of out parameter
- png: PNG
- png-transp: PNG with transparent background
- gif: GIF
- jpeg: JPEG
- pdf: Portable Document Format
- svg: Scalable Vector Graphics
- eps: Encapsulated PostScript
- eps-gzip: Gzipped Encapsulated PostScript
May default to a sensible value depending on the filename given by out.
- A filename.
- A URL.
- The special value "-", meaning standard input. In this case the input format must be given explicitly using the ifmtN parameter. Note that not all formats can be streamed in this way.
- A scheme specification of the form :<scheme-name>:<scheme-args>.
- A system command line with either a "<" character at the start, or a "|" character at the end ("<syscmd" or "syscmd|"). This executes the given pipeline and reads from its standard output. This will probably only work on unix-like systems.
In any case, compressed data in one of the supported compression formats (gzip, Unix compress or bzip2) will be decompressed transparently.
Commands may alternatively be supplied in an external file, by using the indirection character '@'. Thus a value of "@filename" causes the file filename to be read for a list of filter commands to execute. The commands in the file may be separated by newline characters and/or semicolons, and lines which are blank or which start with a '#' character are ignored. A backslash character '\fR' at the end of a line joins it with the following line.
- <expr>: symmetric error value
- <lo-expr>,<hi-expr>:distinct lower and upper error values
- <lo-expr>,: lower error value only
- ,<hi-expr>: upper error value only
- null: no errors
The expression in each case is a numeric algebraic expression based on column names as described in SUN/256.
- <expr>: symmetric error value
- <lo-expr>,<hi-expr>:distinct lower and upper error values
- <lo-expr>,: lower error value only
- ,<hi-expr>: upper error value only
- null: no errors
The expression in each case is a numeric algebraic expression based on column names as described in SUN/256.
- rainbow
- pastel
- standard
- heat
- colour
- hue
- greyscale
- red-blue
and these are the available colour modifying options:
- hsv_h
- hsv_s
- hsv_v
- intensity
- rgb_red
- rgb_green
- rgb_blue
- yuv_y
- yuv_u
- yuv_v
- transparency
For most purposes, either the American or the British spelling is accepted for this parameter name.
- filled_circle
- open_circle
- cross
- x
- open_square
- open_diamond
- open_triangle_up
- open_triangle_down
- filled_square
- filled_diamond
- filled_triangle_up
- filled_triangle_down
The minimum value is 1, which means opaque markers.
- null: No line is plotted.
- DotToDot: Each point is joined to the next one in sequence by a straight line.
- LinearRegression: A linear regression line is plotted based on all the points which are visible in the plot. Note that the regression coefficients take no account of points out of the visible range.
Only has an effect if the lineNS parameter is set to draw lines.
- dot
- dash
- longdash
- dotdash
or may be a comma-separated string of on/off length values such as "4,2,8,2". A null value indicates a solid line.
Only has an effect if the lineNS parameter is set to draw lines.
- none
- lines
- capped_lines
- caps
- arrows
- ellipse
- crosshair_ellipse
- rectangle
- crosshair_rectangle
- filled_ellipse
- filled_rectangle
SEE ALSO
stilts(1)
If the package stilts-doc is installed, the full documentation
SUN/256 is available in HTML format:
file:///usr/share/doc/stilts/sun256/index.html
VERSION
STILTS version 3.5.2-debian
This is the Debian version of Stilts, which lack the support of
some file formats and network protocols. For differences see
file:///usr/share/doc/stilts/README.Debian
AUTHOR
Mark Taylor (Bristol University)
| Mar 2017 |