有没有更简单的方法可以将 excel 文件直接加载到 Numpy 数组中?
我查看了numpy.genfromtxt
numpy 文档中的自动加载功能,但它不直接加载 excel 文件。
array = np.genfromtxt("Stats.xlsx")
ValueError: Some errors were detected !
Line #3 (got 2 columns instead of 1)
Line #5 (got 5 columns instead of 1)
......
现在我正在使用 usingopenpyxl.reader.excel
读取 excel 文件,然后附加到 numpy 2D 数组。这似乎效率低下。理想情况下,我希望将 excel 文件直接加载到 numpy 2D 数组中。