|
|
|
|
|
|
|
scatter(self,
x,
y,
names=[],
title='',
style='points',
jitter=True)
Makes scatter plots from numpy arrays.
if arrays are multidimensional, multiple scatter plots will be generated, pairing rows. |
source code
|
|
|
plotlines(self,
data,
x=None,
names=[],
title='',
style='lines',
multiplot=0)
Create a single/multiple line plot from a numpy array or record array. |
source code
|
|
|
_linesFromRA(self,
data,
x,
style)
Record-array specific code |
source code
|
|
|
plothist(self,
data,
title='',
names=[],
multiplot=0)
Create a sinlge/multiple Histogram plot from a numpy array or record array. |
source code
|
|
|
_histFromRA(self,
data)
Record-array specific code |
source code
|
|