Exemple #1
0
    def __init__(self, data, return_type="axes", **kwargs):
        # Do not call LinePlot.__init__ which may fill nan
        if return_type not in self._valid_return_types:
            raise ValueError("return_type must be {None, 'axes', 'dict', 'both'}")

        self.return_type = return_type
        MPLPlot.__init__(self, data, **kwargs)
Exemple #2
0
 def __init__(
     self,
     data,
     bins: int | np.ndarray | list[np.ndarray] = 10,
     bottom: int | np.ndarray = 0,
     **kwargs,
 ) -> None:
     self.bins = bins  # use mpl default
     self.bottom = bottom
     # Do not call LinePlot.__init__ which may fill nan
     MPLPlot.__init__(self, data, **kwargs)
Exemple #3
0
 def __init__(self, data, bins=10, bottom=0, **kwargs):
     self.bins = bins        # use mpl default
     self.bottom = bottom
     # Do not call LinePlot.__init__ which may fill nan
     MPLPlot.__init__(self, data, **kwargs)
Exemple #4
0
 def __init__(self, data, bw_method=None, ind=None, **kwargs):
     MPLPlot.__init__(self, data, **kwargs)
     self.bw_method = bw_method
     self.ind = ind
Exemple #5
0
 def __init__(self, data, bins=10, bottom=0, **kwargs):
     self.bins = bins  # use mpl default
     self.bottom = bottom
     # Do not call LinePlot.__init__ which may fill nan
     MPLPlot.__init__(self, data, **kwargs)
Exemple #6
0
 def __init__(self, data, bw_method=None, ind=None, **kwargs):
     MPLPlot.__init__(self, data, **kwargs)
     self.bw_method = bw_method
     self.ind = ind