跳过具有numpy.genfromtxt()蟒3.4误差的指定数量的列(Skip a specifi

2019-10-22 17:20发布

import os
import numpy as np
import matplotlib.pyplot as plt

# Open a file
path = "input/"

filelist = list(filter(lambda s: s.endswith(".asc"), os.listdir(path)))
firstImage = np.genfromtxt (" ".join(ln.split()[1:]) for ln in path+next(iter(filelist)))

怎么了? 越来越:类型错误:无法将“字节”对象str的隐

Answer 1:

检查出功能的文档,它似乎能以各种疯狂的事情开箱:

http://docs.scipy.org/doc/numpy/reference/generated/numpy.genfromtxt.html

包括但不限于使用usecols参数将允许你使用一些列跳过。

然后,就没有必要花哨的操作



文章来源: Skip a specified number of columns with numpy.genfromtxt() python 3.4 error