|
|
|
|
|
DrawClusterTree(cluster,
canvas,
size,
ptColors=[],
lineWidth=None,
showIndices=0,
showNodes=1,
stopAtCentroids=0,
logScale=0,
tooClose=-1)
handles the work of drawing a cluster tree on a Sping canvas
**Arguments**
- cluster: the cluster tree to be drawn
- canvas: the Sping canvas on which to draw
- size: the size of _canvas_
- ptColors: if this is specified, the _colors_ will be used to color
the terminal nodes of the cluster tree. |
source code
|
|
|
|
_DrawClusterTree(cluster,
canvas,
size,
ptColors=[],
lineWidth=None,
showIndices=0,
showNodes=1,
stopAtCentroids=0,
logScale=0,
tooClose=-1)
handles the work of drawing a cluster tree on a Sping canvas
**Arguments**
- cluster: the cluster tree to be drawn
- canvas: the Sping canvas on which to draw
- size: the size of _canvas_
- ptColors: if this is specified, the _colors_ will be used to color
the terminal nodes of the cluster tree. |
source code
|
|
|
|
ClusterToPDF(cluster,
fileName,
size=(300, 300),
ptColors=[],
lineWidth=None,
showIndices=0,
stopAtCentroids=0,
logScale=0)
handles the work of drawing a cluster tree to an PDF file
**Arguments**
- cluster: the cluster tree to be drawn
- fileName: the name of the file to be created
- size: the size of output canvas
- ptColors: if this is specified, the _colors_ will be used to color
the terminal nodes of the cluster tree. |
source code
|
|
|
|
ClusterToSVG(cluster,
fileName,
size=(300, 300),
ptColors=[],
lineWidth=None,
showIndices=0,
stopAtCentroids=0,
logScale=0)
handles the work of drawing a cluster tree to an SVG file
**Arguments**
- cluster: the cluster tree to be drawn
- fileName: the name of the file to be created
- size: the size of output canvas
- ptColors: if this is specified, the _colors_ will be used to color
the terminal nodes of the cluster tree. |
source code
|
|
|
|
ClusterToImg(cluster,
fileName,
size=(300, 300),
ptColors=[],
lineWidth=None,
showIndices=0,
stopAtCentroids=0,
logScale=0)
handles the work of drawing a cluster tree to an image file
**Arguments**
- cluster: the cluster tree to be drawn
- fileName: the name of the file to be created
- size: the size of output canvas
- ptColors: if this is specified, the _colors_ will be used to color
the terminal nodes of the cluster tree. |
source code
|
|