|
__init__(self,
root=Tk())
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature
|
|
makeLine(self,
points,
**attr)
|
|
makeStep(self,
points,
**attr)
|
|
makeHistogram(self,
points,
**attr)
Makes a histogram graph.
|
|
makeSymbols(self,
points,
**attr)
|
|
makeBars(self,
points,
**attr)
|
|
makeGraphObjects(self,
objects)
|
|
makeGraphBase(self,
master,
width,
height,
background='white',
title="",
xtitle='',
ytitle='',
**kw)
|
|
graphMenu(self,
root,
graph)
To provide a File menu (postscript output, more to come) to the
plotxxxx plots
|
|
plotLine(self,
points,
windowsize=(500,300),
title='',
width=1,
color='black',
smooth=0,
background='white',
xlab='x',
ylab='y',
xaxis='automatic',
yaxis='automatic')
Generates a line chart, with menu to save as Postscript file.
|
|
plotStep(self,
points,
windowsize=(500,300),
title='',
width=1,
color='black',
background='white',
xlab='x',
ylab='y',
xaxis='automatic',
yaxis='automatic')
Generates a step chart, with menu to save as Postscript file.
|
|
plotHistogram(self,
points,
windowsize=(500,300),
title='',
width=1,
color='black',
background='white',
xlab='x',
ylab='y',
xaxis='automatic',
yaxis='automatic')
Makes a histogram plot.
|
|
plotBars(self,
points,
windowsize=(500,300),
title='',
color='black',
width=1,
size=3,
fillcolor='black',
fillstyle='',
outline='black',
background='white',
xlab='x',
ylab='y',
xaxis='automatic',
yaxis='automatic',
anchor=0.0)
Generates a bar chart, with menu to save as Postscript file.
|
|
plotScatter(self,
points,
windowsize=(500,300),
title='',
width=1,
color='black',
fillcolor='black',
size=2,
fillstyle='',
outline='black',
marker='circle',
background='white',
xlab='x',
ylab='y',
xaxis='automatic',
yaxis='automatic')
|
|
mainloop(self)
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|