テキストファイルから大量のデータ配列を抽出し、ループを使用numpy.loadtxt
して、次のように異なる列を異なる辞書キーに入れています。
f = numpy.loadtxt(datafile, skiprows=5) # Open and read in the file, skipping to the data
d = {} # Create empty dictionary
for x in range(0, f.shape[1]):
d[x] = f[:,x] # Loop through the columns of the datafile, putting each one into
#a dictionary index
テキスト ファイルの配列の上の行には、配列内の変数のすべてのタイトルが含まれています。各変数名を取得して、関連する辞書のキー名として配置する方法はありますか? (つまり、列 1 = データ、d[日付] ={14/11/12,15/11/12 .... など)