我从 CSV 文件加载了这个巨大的 500 万 * 42 ndarray。在我进行一些处理并尝试将其保存到另一个 CSV 文件中,其类型为float
.
我收到以下错误:
np.savetxt("inputFiles/fixed_X_"+self.file_name, X.astype(np.float), delimiter=",", fmt="%10.0f")
ValueError: could not convert string to float:
我想删除任何包含无法转换为浮点数的值的行(我相信它是 csv 文件中的空白单元格)但由于文件大小太大而我无法找到它(我不能甚至用excel打开它)。