HistoErrorbars¶
- class gdt.core.plot.plot.HistoErrorbars(bins, ax, color=None, alpha=None, **kwargs)[source]¶
Bases:
PlotElementPlot errorbars for lightcurves or count spectra.
- Parameters:
bins (
TimeBinsorEnergyBins) – The lightcurve or count spectrum histogramsax (
matplotlib.axes) – The axis on which to plotcolor (str, optional) – The color of the rate histograms
alpha (float, optional) – The alpha of the fill. Default is 1
**kwargs – Other plotting options
Attributes Summary
The alpha opacity value, between 0 and 1.
The object references to the individual matplotlib elements
The color of the plot element
The line width of the errorbars.
True if the element is shown on the plot, False otherwise
The plot element zorder
Methods Summary
hide()Hide the plot element
remove()Remove the plot element
show()Show the plot element
toggle()Toggle the visibility of the plot element
Attributes Documentation
- alpha¶
The alpha opacity value, between 0 and 1.
- Type:
(float)
- artists¶
The object references to the individual matplotlib elements
- Type:
(list)
- color¶
The color of the plot element
- Type:
(str)
- linewidth¶
The line width of the errorbars. Default is 1.5
- Type:
(int)
- visible¶
True if the element is shown on the plot, False otherwise
- Type:
(bool)
- zorder¶
The plot element zorder
- Type:
(int)
Methods Documentation
- hide()¶
Hide the plot element
- remove()¶
Remove the plot element
- show()¶
Show the plot element
- toggle()¶
Toggle the visibility of the plot element