scatter

scatter, tile type

The scatter tile displays a set of 2D points. It takes exactly two numeric vectors as arguments.

Example

table T = with
  [| as X, as Y |]
  [| 0.1, 0.2 |]
  [| 0.4, 0.8 |]
  [| 0.6, 0.3 |]
  [| 0.9, 0.7 |]

show scatter "Points" with
  T.X
  T.Y

This produces a scatter plot for the following points:

X Y
0.1 0.2
0.4 0.8
0.6 0.3
0.9 0.7

StyleCode

For generic StyleCode rules, see stylecode.

User Contributed Notes
0 notes + add a note