I wonder if there is a direct way to import the contents of a CSV file into a record array, much in the way that R\'s read.table(), read.delim(), a
read.table()
read.delim()
You can use this code to send CSV file data into an array:
import numpy as np csv = np.genfromtxt('test.csv', delimiter=",") print(csv)