Home | Trees | Index | Help |
---|
Package SimPy :: Module SimPlot :: Class SimPlot |
|
object
--+
|
SimPlot
Method Summary | |
---|---|
__init__(self,
root)
| |
To provide a File menu (postscript output, more to come) to the plotxxxx plots | |
mainloop(self)
| |
makeBars(self,
points,
**attr)
| |
makeGraphBase(self,
master,
width,
height,
background,
title,
xtitle,
ytitle,
**kw)
| |
makeGraphObjects(self,
objects)
| |
Makes a histogram graph. | |
makeLine(self,
points,
**attr)
| |
makeStep(self,
points,
**attr)
| |
makeSymbols(self,
points,
**attr)
| |
Generates a bar chart, with menu to save as Postscript file. | |
Makes a histogram plot. | |
Generates a line chart, with menu to save as Postscript file. | |
plotScatter(self,
points,
windowsize,
title,
width,
color,
fillcolor,
size,
fillstyle,
outline,
marker,
background,
xlab,
ylab,
xaxis,
yaxis)
| |
Generates a step chart, with menu to save as Postscript file. | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Method Details |
---|
graphMenu(self, root, graph)To provide a File menu (postscript output, more to come) to the plotxxxx plots |
makeHistogram(self, points, **attr)Makes a histogram graph. 'points' must be a Histogram-like object. |
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. 'points' can be a Monitor instance. |
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' can be a Monitor instance. |
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. 'points' can be a Monitor instance. |
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. 'points' can be a Monitor instance. |
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Wed Jun 14 14:32:46 2006 | http://epydoc.sf.net |