私はPythonを初めて使用するので、これは非常に基本的に聞こえるかもしれません。csv2recを使用してcsvファイルをインポートしました。最初の行にはヘッダーがあります。ヘッダーを「x」、「y」、「z」に変更したい。これを行うための最良の方法は何ですか?
>>> import matplotlib
>>> import matplotlib.mlab as mlab
>>> r= mlab.csv2rec('HeightWeight.csv', delimiter= ',')
>>> names= r.dtype.names
>>> for i in names:
print i
index
heightinches
weightpounds