當前位置: 首頁>>代碼示例>>Python>>正文


Python Plot.__init__方法代碼示例

本文整理匯總了Python中plot.Plot.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python Plot.__init__方法的具體用法?Python Plot.__init__怎麽用?Python Plot.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在plot.Plot的用法示例。


在下文中一共展示了Plot.__init__方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from plot import Plot [as 別名]
# 或者: from plot.Plot import __init__ [as 別名]
    def __init__( self, serial = None, *args ) :
        """TemperaturePlot constructor it add axis titles."""

        Plot.__init__( self, *args )

        self.curve.setTitle( self._tr('LHe level data') )
        self.setAxisTitle( Qwt.QwtPlot.xBottom, self._tr('Time (min)') )
        self.setAxisTitle( Qwt.QwtPlot.yLeft, self._tr('LHe level (mm)') )

        self.serial = serial
開發者ID:fbianco,項目名稱:labmonitoring,代碼行數:12,代碼來源:TwickenhamHeDepth.py

示例2: __init__

# 需要導入模塊: from plot import Plot [as 別名]
# 或者: from plot.Plot import __init__ [as 別名]
    def __init__(self, parent):
        Plot.__init__(self, parent)

        # the plot and its data
        self._raster_data = RasterData(self)
        self._plot_item = Qwt.QwtPlotSpectrogram()
        self._plot_item.setData(self._raster_data)
        self._plot_item.attach(self)
        
        # enable colormap and -bar
        self._cbar = self.axisWidget(Qwt.QwtPlot.yRight)
        self._cbar.setColorBarEnabled(True)
        self.enableAxis(Qwt.QwtPlot.yRight)
        self.set_cbar()
開發者ID:guen86,項目名稱:QTLab-Analysis,代碼行數:16,代碼來源:raster_plot.py

示例3: __init__

# 需要導入模塊: from plot import Plot [as 別名]
# 或者: from plot.Plot import __init__ [as 別名]
 def __init__(self, conn, column):
     self.cursor = conn.cursor()
     Plot.__init__(self, OUTPUT_BASE_FILENAME + column + '.pdf')
開發者ID:LeandroLovisolo,項目名稱:BD-TP2,代碼行數:5,代碼來源:plot-datasets.py

示例4: __init__

# 需要導入模塊: from plot import Plot [as 別名]
# 或者: from plot.Plot import __init__ [as 別名]
 def __init__(self, data, output_path):
     self.data = data
     Plot.__init__(self, output_path)
開發者ID:LeandroLovisolo,項目名稱:BD-TP2,代碼行數:5,代碼來源:plot-significance.py

示例5: __init__

# 需要導入模塊: from plot import Plot [as 別名]
# 或者: from plot.Plot import __init__ [as 別名]
 def __init__(self, parameters, means, stds, output_path):
     self.parameters = parameters
     self.means = means
     self.stds = stds
     Plot.__init__(self, output_path)
開發者ID:LeandroLovisolo,項目名稱:BD-TP2,代碼行數:7,代碼來源:plot-performance.py


注:本文中的plot.Plot.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。