ScatterPlot.opCall
- ScatterPlot opCall(R1 x, R2 y)
class ScatterPlot
static
opCall
if (
isInputRange!R1 &&
is(
ElementType!
R1 :
double)
&&
isInputRange!R2
&&
is(
ElementType!
R2 :
double)
)
- ScatterPlot opCall(R y)
plot2killplotScatterPlot
functionsstatic functions
Factory method for creating a ScatterPlot. x and y must both be input ranges of the same length, with elements implicitly convertible to doubles. Note that they are copied inside the factory, so changes to the original ranges after calling this factory will not affect the plot.