pandasモジュールのdframeを使用します。
df = dframe.resample('t', how = 'sum')
その後、新しいファイルにデータを書き込みたいと思います。私はこれを使用します:
with open('dframe.txt', 'w') as fout:
fout.write(df.price1) #it is the first column
しかし、それは機能しません。
df.price1
を返しますSeries
。幸いにも、 :に似Series
た方法があります。to_csv
DataFrame's
Definition: Series.to_csv(self, path, index=True, sep=',', na_rep='',
float_format=None, header=False, index_label=None, mode='w', nanRep=None,
encoding=None)
使用例:
df.price1.to_csv('outfile.csv')
試す
df.to_csv('mydf.txt', sep='\t')
参考までに:
to_excelを使用するためにのみ必要です:使用法はメソッドのドキュメントまたはhttp://pandas.pydata.org/pandas-docs/stable/にあります
使ってみました.values
か?
with open('dframe.txt', 'w') as fout:
fout.write(df.price1.values)
すべての列値を含むリストを返します。