示例#1
0
 def __init__(self,
              show_missing=True,
              get_category=None,
              xlim_left=None,
              xlim_right=None,
              ylim_bottom=None,
              ylim_top=None,
              tick_size=None,
              label_size=None,
              title_size=None,
              **kwargs):
     ScatterPlotReport.__init__(self, show_missing, get_category, **kwargs)
     self.xlim_left = xlim_left
     self.xlim_right = xlim_right
     self.ylim_bottom = ylim_bottom
     self.ylim_top = ylim_top
     self.tick_size = tick_size
     self.label_size = label_size
     self.title_size = title_size
     if self.output_format == 'tex':
         self.writer = RelativeScatterPgfPlots
     else:
         self.writer = RelativeScatterMatplotlib
示例#2
0
 def __init__(self, show_missing=True, get_category=None, **kwargs):
     ScatterPlotReport.__init__(self, show_missing, get_category, **kwargs)
     if self.output_format == 'tex':
         raise "not supported"
     else:
         self.writer = RelativeScatterMatplotlib
 def __init__(self, show_missing=True, get_category=None, **kwargs):
     ScatterPlotReport.__init__(self, show_missing, get_category, **kwargs)
     if self.output_format == 'tex':
         raise "not supported"
     else:
         self.writer = RelativeScatterMatplotlib