コード例 #1
0
ファイル: divgui.py プロジェクト: damontallen/diviner
 def fpath_changed(self,new):
     print "Reading",new
     #### 
     ### FIX ME: nrows = 1000 for develepment
     ####
     self.df = d.read_div_data(new,nrows=35000)
     self.add_status("Done loading new file.")
     self.checklist_c=['1']
コード例 #2
0
ファイル: divgui.py プロジェクト: MrZombie69232/Diviner
 def fpath_changed(self, new):
     print "Reading", new
     ####
     ### FIX ME: nrows = 1000 for develepment
     ####
     self.df = d.read_div_data(new, nrows=35000)
     self.add_status("Done loading new file.")
     self.checklist_c = ['1']
コード例 #3
0
ファイル: noise.py プロジェクト: MrZombie69232/Diviner
def prep_data(fname):
    df = div.read_div_data(fname)
    fix_columns(df)
    df.set_index('jdate', inplace=True)
    return df
コード例 #4
0
ファイル: noise.py プロジェクト: damontallen/diviner
def prep_data(fname):
    df = read_div_data(fname)
    fix_columns(df)
    df.set_index(make_date_index(df),inplace=True)
    return df
コード例 #5
0
ファイル: noise.py プロジェクト: michaelaye/diviner
def prep_data(fname):
    df = div.read_div_data(fname)
    fix_columns(df)
    df.set_index('jdate', inplace=True)
    return df