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

Class VerticalBarHistogram

source code

                object --+        
                         |        
       plotutils.BasicPlot --+    
                             |    
plotutils.VerticalBarHistogram --+
                                 |
                                VerticalBarHistogram

Instance Methods [hide private]
 
__init__(self, xlabel="", ylabel="", title="", subtitle="")
Basic plot initialization.
source code
 
finalize(self, num_bins=20, normed=False, logx=False, logy=False, base=10, hidden_colorbar=False, loc='best')
Stub.
source code
 
add_hidden_colorbar(self) source code

Inherited from plotutils.VerticalBarHistogram: add_content

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="")
(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)

finalize(self, num_bins=20, normed=False, logx=False, logy=False, base=10, hidden_colorbar=False, loc='best')

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)