跳过指定数量的列,出现 numpy.genfromtxt() python 3.4 错误


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)))

出了什么问题?getting: TypeError: 无法将"bytes"对象隐式转换为 str

查看函数的文档,它似乎能够开箱即用的各种疯狂的东西:

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

包括但不限于,使用 usecols 参数将允许您跳过使用某些列。

那么就不需要花哨的操作

相关内容

  • 没有找到相关文章

最新更新