XLPack for Matplotlib Experimental Version 0.1
Reference Manual
Loading...
Searching...
No Matches

◆ Scatter()

Function Scatter ( N As  Long,
X() As  Double,
Y() As  Double,
S() As  Double,
C() As  Long,
Optional KwArgs As  String 
)

Scatter plot

Purpose
A scatter plot of Y vs. X.
Returns
PyObject (PathCollection).
(On error, Nothing is returned)
Parameters
[in]NNumber of data. (N > 0)
[in]X()Array X(LX - 1) (LX >= N)
x-axis data.
[in]Y()Array Y(LY - 1) (LY >= N)
y-axis data.
[in]S()Array S(LS - 1) (LS >= N)
Marker size.
[in]C()Array C(LC - 1) (LC >= N)
Marker color.
[in]KwArgs(Optional)
Optional keyword parameters. (default = "")
Example
Scatter plot of x vs. y.