Methods
|
|
|
|
__init__
|
__init__ ( self, root=Tk() )
|
|
graphMenu
|
graphMenu (
self,
root,
graph,
)
To provide a File menu (postscript output, more to come)
to the plotxxxx plots
|
|
mainloop
|
mainloop ( self )
|
|
makeBars
|
makeBars (
self,
points,
**attr,
)
|
|
makeGraphBase
|
makeGraphBase (
self,
master,
width,
height,
background='white',
title="",
xtitle='',
ytitle='',
**kw,
)
|
|
makeGraphObjects
|
makeGraphObjects ( self, objects )
|
|
makeHistogram
|
makeHistogram (
self,
points,
**attr,
)
Makes a histogram graph. points must be a Histogram-like
object.
|
|
makeLine
|
makeLine (
self,
points,
**attr,
)
|
|
makeStep
|
makeStep (
self,
points,
**attr,
)
|
|
makeSymbols
|
makeSymbols (
self,
points,
**attr,
)
|
|
plotBars
|
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,
)
|
|
plotHistogram
|
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. points must be a Histogram-like
object.
|
|
plotLine
|
plotLine (
self,
points,
windowsize=( 500, 300 ),
title='',
width=1,
color='black',
smooth=0,
background='white',
xlab='x',
ylab='y',
xaxis='automatic',
yaxis='automatic',
)
|
|
plotScatter
|
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',
)
|
|
plotStep
|
plotStep (
self,
points,
windowsize=( 500, 300 ),
title='',
width=1,
color='black',
background='white',
xlab='x',
ylab='y',
xaxis='automatic',
yaxis='automatic',
)
|
|