def create_subplots(self,
                     figsize=(10,5)):
     PyposmatAbstractPlot.create_subplots(self,
             nrows=1,ncols=1,
             sharex=False,sharey=False,
             figsize = figsize,
             squeeze=True,
             subplot_kw=None,gridspec_kw=None)
    def __init__(self,config=None,data=None,excluded_names=[]):
        assert isinstance(excluded_names,list)

        PyposmatAbstractPlot.__init__(self,config=config,data=data)
        self.legend_patches = []
        self.x_limits = None
        self.y_limits = None
        self.excluded_names = excluded_names
    def create_subplots(self, figsize=(10, 5), nrows=1, ncols=1):
        assert isinstance(nrows, int)
        assert isinstance(ncols, int)

        PyposmatAbstractPlot.create_subplots(self,
                                             nrows=1,
                                             ncols=1,
                                             sharex=False,
                                             sharey=False,
                                             figsize=figsize,
                                             squeeze=True,
                                             subplot_kw=None,
                                             gridspec_kw=None)
예제 #4
0
    def __init__(self,
            config=None,
            data=None,
            is_plot_histogram = False,
            is_plot_kde = True):

        PyposmatAbstractPlot.__init__(self,config=config,data=data)

        self.qoi_name = None
        self.create_subplots()

        self.is_plot_histogram = False
        self.is_plot_kde = True
        self.is_plot_qoitarget = False
예제 #5
0
    def __init__(self, config=None, data=None):
        PyposmatAbstractPlot.__init__(self, config=config, data=data)

        self.x_limits = None
        self.y_limits = None
 def __init__(self,excluded_names=[]):
     PyposmatAbstractPlot.__init__(self)
예제 #7
0
 def savefig(self,filename,dpi=1200,transparent=True):
     PyposmatAbstractPlot.savefig(self,filename=filename,dpi=dpi,transparent=True)
예제 #8
0
 def create_subplots(self):
     PyposmatAbstractPlot.create_subplots(self,nrows=1,ncols=1)