使用 CSV 文件的内容填充数组
filePath = "file.csv"
data = np.genfromtxt(filePath)
支持许多选项,请参阅完整列表的官方文档 :
data = np.genfromtxt(filePath, dtype='float', delimiter=';', skip_header=1, usecols=(0,1,3) )
filePath = "file.csv"
data = np.genfromtxt(filePath)
支持许多选项,请参阅完整列表的官方文档 :
data = np.genfromtxt(filePath, dtype='float', delimiter=';', skip_header=1, usecols=(0,1,3) )