本文整理匯總了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
示例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()
示例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')
示例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)
示例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)