|
__init__(self,
root=Tk())
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
makeGraphBase(self,
master,
width,
height,
background=' white ' ,
title='
' ,
xtitle='
' ,
ytitle='
' ,
**kw) |
source code
|
|
|
graphMenu(self,
root,
graph)
To provide a File menu (postscript output, more to come) to the
plotxxxx plots |
source code
|
|
|
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. |
source code
|
|
|
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. |
source code
|
|
|
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. |
source code
|
|
|
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. |
source code
|
|
|
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 ' ) |
source code
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|