我想导入包含
的.dat
文件
lines/header/numbers/lines
类似这样的例子
start using data to calculate something
x y z g h
1 4 6 8 3
4 5 6 8 9
2 3 6 8 5
end the data that I should import.
现在我正在尝试读取此文件,删除第一行和最后一行并将数字放在数组中并对它们进行一些基本计算,但我无法摆脱这些行。我使用data = np.genfromtxt('sample.dat')
来导入数据,但是使用行,我什么也做不了。任何人都可以帮助我吗?
答案 0 :(得分:2)
也许这会对你有所帮助:
import numpy as np
data = np.genfromtxt('sample.dat',
skip_header=1,
skip_footer=1,
names=True,
dtype=None,
delimiter=' ')
print(data)
# Output: [(1, 4, 6, 8, 3) (4, 5, 6, 8, 9) (2, 3, 6, 8, 5)]