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,
Z() As  Double,
S() As  Double,
C() As  Long,
Optional KwArgs As  String 
)

3D scatter plot

Purpose
Create a 3D scatter plot.
Returns
PyObject (PathCollection).
(On error, Nothing is returned)
Parameters
[in]NNumber of data.
[in]X()Array X(LX - 1) (LX >= N)
x-axis data.
[in]Y()Array Y(LY - 1) (LY >= N)
y-axis data.
[in]Z()Array Z(LZ - 1) (LZ >= N)
z-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
3D scatter plot.