plot

plot, tile type

The plot tile displays a function $f(x)$ by plotting paired X and Y vectors.

Example

table T = extend.range(5)
T.X = T.N - 3
T.Y = cos(T.X)

show plot "Cosine samples" with
  T.X
  T.Y

This produces a plot from the following points:

X Y
-2 -0.4161468
-1 0.5403023
0 1
1 0.5403023
2 -0.4161468

StyleCode

For generic StyleCode rules, see stylecode.

User Contributed Notes
0 notes + add a note