前提・実現したいこと
欠測値を線形補間したいのですがうまく補間できていません。
なぜうまくいかないのでしょうか?
発生している問題・エラーメッセージ
エラーメッセージが特に出力されませんでした。 NaNの合計が変化していないので補間されていません。
該当のソースコード
python
1import numpy as np 2import pandas as pd 3import datetime as dt 4 5Month=[] 6for year in range(1976,2005): 7 year = str(year).zfill(4) 8 for month in range(1,13): 9 month = str(month).zfill(2) 10 path = '/work/Amedas/amedas data/amedas'+year+'/hourly/'+year+month+'/area88/' 11 if int(year) >= 1994 : 12 fname1 = 'ah88317_'+year+month+'.csv' 13 fname2 = 'ah88466_'+year+month+'.csv' 14 flist1 = path + fname1 15 flist2 = path + fname2 16 df1 = pd.read_csv(flist1,usecols=[1,3,5,7,9],skiprows=[0,1,2],engine='python') 17 df2 = pd.read_csv(flist2,usecols=[1,3,5,7,9],skiprows=[0,1,2],engine='python') 18 result = pd.concat([df1,df2],axis=1) 19 Month.append(result) 20 else: 21 fname1 = 'ah88316_'+year+month+'.csv' 22 fname2 = 'ah88466_'+year+month+'.csv' 23 flist1 = path + fname1 24 flist2 = path + fname2 25 df1 = pd.read_csv(flist1,usecols=[1,3,5,7,9],skiprows=[0,1,2],engine='python') 26 df2 = pd.read_csv(flist2,usecols=[1,3,5,7,9],skiprows=[0,1,2],engine='python') 27 result = pd.concat([df1,df2],axis=1) 28 Month.append(result) 29 30df = pd.concat(Month) 31df.to_csv('matome.csv') 32df=pd.read_csv('./matome.csv',usecols=[1,2,3,4,5,6,7,8,9,10],engine='python') 33dates_DF=pd.DataFrame(pd.date_range('1976/1/1 00:00','2004/12/31 23:00',freq='H')) 34 35df['time']= dates_DF 36df['time'] = pd.to_datetime(df['time']) 37df.set_index('time',inplace=True) 38 39df.columns=['precipitaion1','wind direction1','wind speed1','temperature1','sunshine duration1','precipitaion2','wind direction2','wind speed2','temperature2','sunshine duration2'] 40df['number']=np.arange(0,len(df)) 41df=df.replace('/////',pd.np.nan) 42df=df.replace('///',pd.np.nan) 43df=df.replace('//',pd.np.nan) 44print(df.isnull().values.sum()) 45 46df=df.interpolate() 47 48print(df.isnull().values.sum()) 49 50df.to_csv('Matome.csv') 51~
試したこと
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー