関数 numpy.append の使用に問題があります。私はより大きなコードの一部として次の関数を書きましたが、私のエラーは次のように再現されています:
data = [
[
'3.5', '3', '0', '0', '15', '6',
'441', 'some text', 'some more complicated data'
],
[
'4.5', '5', '1', '10', '165', '0',
'1', 'some other text', 'some even more complicated data'
]
]
def GetNumpyArrey(self, index):
r = np.array([])
for line in data:
np.append(r, float(line[index]))
print r
インデックス < 6。結果は次のとおりです。
>> []
私は何を間違っていますか?
どうもありがとう !