Categories: NumpyPython

How to read csv file using Numpy in Python

We provide affordable online training course(via ZOOM meeting) for Python and R programming at fundamental level, click here for more details.

Numpy module has a function genfromtxt() that is used to read tabular data format into an array. The option for the function is the file name in working directory, delimiter and first line as variable name. The following example shows how to read a csv file into an structured array.

#a csv file in working directory
index,gender,math,physics,chemistry
16,male,29,98,83,76
17,female,36,73,79,69
18,male,39,71,73,87
19,female,24,68,72,89
20,female,25,67,73,62
#Import Numpy module
import numpy as np
#read csv file, create an structured array, 
#delimiter using comma, and first line in the file as variable name
score = np.genfromtxt('score.csv', delimiter=',', names=True)
score
#output
array([(16,male,29,98,83,76), (17,female,36,73,79,69),
(18,male,39,71,73,87),(19,female,24,68,72,89),(20,female,25,67,73,62)],
dtype=[('index', '<i2'), ('gender', 'S6'), ('math', '<i4'), ('physics', '<i4'),
('chemistry', '<i4')])

You can see Numpy returns as a structured array.

You can also watch videos on our YouTube channel for more understanding of Python programming skills.

wilsonzhang746

Recent Posts

Download source files for R Machine learning

Click here to go to source files for R Machine Learning

1 day ago

Python Machine Learning Source Files

Click here to download Python Machine Learning Source Files !

3 weeks ago

Install PyTorch on Windows

PyTorch is a deep learning package for machine learning, or deep learning in particular for…

1 month ago

Topic Modeling using Latent Dirichlet Allocation with Python

Topic modeling is a subcategory of unsupervised machine learning method, and a clustering task in…

2 months ago

Document sentiment classification using bag-of-words in Python

For online Python training registration, click here ! Sentiment classification is a type of machine…

2 months ago

Download R Course source files

Click here to download R Course source files !

11 months ago