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()
This work as a charm...
import csv with open("data.csv", 'r') as f: data = list(csv.reader(f, delimiter=";")) import numpy as np data = np.array(data, dtype=np.float)