How do I read CSV data into a record array in NumPy?

后端 未结 11 1306
广开言路
广开言路 2020-11-22 02:55

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

11条回答
  •  长情又很酷
    2020-11-22 03:58

    This is the easiest way:

    import csv
    with open('testfile.csv', newline='') as csvfile:
        data = list(csv.reader(csvfile))
    

    Now each entry in data is a record, represented as an array. So you have a 2D array. It saved me so much time.

提交回复
热议问题