Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(8) | Call(4) | Derive(0) | Import(4)
src/d/a/DataPipeline-1.2/DataPipeline/PipelineApp.py DataPipeline(Download)
from PEATDB.TableModels import TableModel from PEATDB.Ekin.Ekin_main import EkinApp from PEATDB.Ekin.Plotting import PlotPanel, Options from PEATDB.Ekin.ModelDesign import ModelDesignApp import os, sys, math, random, glob, numpy, string, types
fr.pack(side=LEFT) self.plotframe = PlotPanel(parent=self, side=BOTTOM, height=200, tools=True) self.dsindex = 0 self.plotframe.Opts.opts['fontsize']=10
src/p/e/PEATDB-2.3/PEATDB/Ekin/ModelDesign.py PEATDB(Download)
import tkFileDialog, tkSimpleDialog, tkMessageBox import Pmw from PEATDB.Ekin.Plotting import PlotPanel from PEATDB.Ekin.Base import EkinProject, EkinDataset import PEATDB.Ekin.Fitting as Fitting
cb=Checkbutton(fr2, text='plot function only',variable=self.plotfunctionvar) cb.pack(side=TOP) self.plotframe = PlotPanel(parent=self, side=BOTTOM, height=200) self.dsindex = 0 self.opts = {'markersize':18,'fontsize':10,'showfitvars':True}
src/p/e/PEATDB-2.3/PEATDB/Ekin/Ekin_main.py PEATDB(Download)
from PEATDB.Ekin.Ekin_map import * from PEATDB.Ekin.IO import * from PEATDB.Ekin.Plotting import PlotPanel import Ekin_images from PEATDB.Ekin.ModelDesign import ModelDesignApp
#add plotter and fitter panels, these are independent classes self.plotframe = PlotPanel(plotpane, side=BOTTOM, tools=True) self.createFitFrame() #a small toolbar
src/p/e/PEATDB-2.3/PEATDB/plugins/titranalysis.py PEATDB(Download)
from PEATDB.Tables import TableCanvas, ColumnHeader from PEATDB.Ekin.Tables import EkinProjModel, EkinProjTable from PEATDB.Ekin.Plotting import PlotPanel from PEATDB.DictEdit import DictEditor import os
def showPlotPanel(self, parent, E=None): """Add an ekin plot frame""" fr=Frame(parent) self.pw.add(fr) self.plotframe = PlotPanel(parent=fr, tools=True)