D | plot.py | 48 def plotLocations(locations, fig, names=None, **kwargs): argument 62 model, axes[0], fig, cols, rows, names=names, **kwargs 66 model, axes, fig, cols, rows, names=names, **kwargs 72 def _plotLocations2D(model, axis, fig, cols, rows, names, **kwargs): argument 76 subplot = fig.add_subplot(rows, cols, i + 1) 93 def _plotLocations3D(model, axes, fig, rows, cols, names, **kwargs): argument 99 axis3D = fig.add_subplot(rows, cols, i + 1, projection='3d') 129 def plotDocument(doc, fig, **kwargs): argument 133 plotLocations(locations, fig, names, **kwargs) 153 fig = pyplot.figure() [all …]
|