Package SimPy :: Module SimPlot :: Class SimPlot
[show private | hide private]
[frames | no frames]

Type SimPlot

object --+
         |
        SimPlot


Method Summary
  __init__(self, root)
  graphMenu(self, root, graph)
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)
  makeHistogram(self, points, **attr)
Makes a histogram graph.
  makeLine(self, points, **attr)
  makeStep(self, points, **attr)
  makeSymbols(self, points, **attr)
  plotBars(self, points, windowsize, title, color, width, size, fillcolor, fillstyle, outline, background, xlab, ylab, xaxis, yaxis, anchor)
Generates a bar chart, with menu to save as Postscript file.
  plotHistogram(self, points, windowsize, title, width, color, background, xlab, ylab, xaxis, yaxis)
Makes a histogram plot.
  plotLine(self, points, windowsize, title, width, color, smooth, background, xlab, ylab, xaxis, yaxis)
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)
  plotStep(self, points, windowsize, title, width, color, background, xlab, ylab, xaxis, yaxis)
Generates a step chart, with menu to save as Postscript file.
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __hash__(x)
x.__hash__() <==> hash(x)
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __repr__(x)
x.__repr__() <==> repr(x)
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
  __str__(x)
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.

Generated by Epydoc 2.1 on Wed Nov 16 12:02:46 2005 http://epydoc.sf.net