Package pylal :: Package dq :: Module dqPlotUtils :: Class LineHistogram
[hide private]
[frames] | no frames]

Class LineHistogram

source code

         object --+        
                  |        
plotutils.BasicPlot --+    
                      |    
    ColorbarScatterPlot --+
                          |
             object --+   |
                      |   |
    plotutils.BasicPlot --+
                          |
                         LineHistogram

A simple line histogram plot. The values of each histogram bin are plotted using pylab.plot(), with points centred on the x values and height equal to the y values.

Cumulative, and rate options can be passeed to the finalize() method to format each trace individually.

Instance Methods [hide private]
 
__init__(self, xlabel="", ylabel="", title="", subtitle="", colorlabel="")
Basic plot initialization.
source code
 
add_content(self, data, livetime=1, cval=None, **kwargs)
Stub.
source code
 
finalize(self, loc='best', num_bins=100, cumulative=False, rate=False, logx=False, logy=False, fill=False, base=10, xlim=None, colorbar=None, clim=None, hidden_colorbar=False)
Stub.
source code
 
add_hidden_colorbar(self) source code

Inherited from ColorbarScatterPlot: add_colorbar, set_colorbar

Inherited from plotutils.BasicPlot: add_legend_if_labels_exist, close, savefig

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, xlabel="", ylabel="", title="", subtitle="", colorlabel="")
(Constructor)

source code 

Basic plot initialization. A subclass can override __init__ and call this one (plotutils.BasicPlot.__init__(self, *args, **kwargs)) and then initialize variables to hold data to plot and labels.

Overrides: object.__init__
(inherited documentation)

add_content(self, data, livetime=1, cval=None, **kwargs)

source code 

Stub. Replace with a method that appends values or lists of values to self.data_sets and appends labels to self.data_labels. Feel free to accept complicated inputs, but try to store only the raw numbers that will enter the plot.

Overrides: plotutils.BasicPlot.add_content
(inherited documentation)

finalize(self, loc='best', num_bins=100, cumulative=False, rate=False, logx=False, logy=False, fill=False, base=10, xlim=None, colorbar=None, clim=None, hidden_colorbar=False)

source code 

Stub. Replace with a function that creates and makes your plot pretty. Do not do I/O here.

Decorators:
  • @plotutils.method_callable_once
Overrides: plotutils.BasicPlot.finalize
(inherited documentation)