LineGraph.opCall

Convenience factory method that produces a LineGraph with a default X axis numbered 1, 2, ..., N, where N is the number of data points, and no error bars. This is mostly useful for quick and dirty plots.

  1. LineGraph opCall(R1 x, R2 y)
  2. LineGraph opCall(R y)
    class LineGraph
    static
    opCall
    (
    R
    )
    (
    R y
    )
    if (
    isInputRange!R &&
    is(ElementType!R : double)
    )
  3. LineGraph opCall(R1 x, R2 y, R3 lowerErrors, R4 upperErrors)

Meta