In this tutorial, we will look at how to read CSV files in Python using the Numpy library.
Numpy functions to read CSV files
You can use the numpy functions genfromtxt()
or loadtxt()
to read CSV files to a numpy array. The following is the syntax:
import numpy as np # using genfromtxt() arr = np.genfromtxt("data.csv", delimiter=",") # using loadtxt() arr = np.loadtxt("data.csv", delimiter=",")
Both the functions return a numpy array. Note that the numpy genfromtxt()
function is a more versatile reader compared to loadtxt()
which aims to be a fast reader for simply formatted files.
Examples
Let’s look at the usage of both these functions and some specific use-cases with the help of examples. For illustrating the examples we will be reading sample data from a CSV file stored locally. This is how the contents of the file look in Notepad –
1. Using np.genfromtxt()
to read CSV
Let’s use the genfromtxt()
function to read the above CSV file.
import numpy as np # read csv arr = np.genfromtxt("sample_data.csv", delimiter=",") # display the array print(arr)
Output:
[[1. 4. 7.] [2. 5. 8.] [3. 6. 9.] [0. 2. 4.] [7. 7. 7.]]
The values from the CSV file have now been loaded into an array. Let’s go ahead and confirm that it’s a numpy array.
type(arr)
Output:
Introductory ⭐
- Harvard University Data Science: Learn R Basics for Data Science
- Standford University Data Science: Introduction to Machine Learning
- UC Davis Data Science: Learn SQL Basics for Data Science
- IBM Data Science: Professional Certificate in Data Science
- IBM Data Analysis: Professional Certificate in Data Analytics
- Google Data Analysis: Professional Certificate in Data Analytics
- IBM Data Science: Professional Certificate in Python Data Science
- IBM Data Engineering Fundamentals: Python Basics for Data Science
Intermediate ⭐⭐⭐
- Harvard University Learning Python for Data Science: Introduction to Data Science with Python
- Harvard University Computer Science Courses: Using Python for Research
- IBM Python Data Science: Visualizing Data with Python
- DeepLearning.AI Data Science and Machine Learning: Deep Learning Specialization
Advanced ⭐⭐⭐⭐⭐
- UC San Diego Data Science: Python for Data Science
- UC San Diego Data Science: Probability and Statistics in Data Science using Python
- Google Data Analysis: Professional Certificate in Advanced Data Analytics
- MIT Statistics and Data Science: Machine Learning with Python - from Linear Models to Deep Learning
- MIT Statistics and Data Science: MicroMasters® Program in Statistics and Data Science
🔎 Find Data Science Programs 👨💻 111,889 already enrolled
Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.
numpy.ndarray
You can see that it is a numpy array.
2. Using np.loadtxt()
to read CSV
You can also use the loadtxt()
function to read CSV files to numpy arrays. Let’s read the above file using this function.
# read csv arr = np.loadtxt("sample_data.csv", delimiter=",") # display the array print(arr)
Output:
[[1. 4. 7.] [2. 5. 8.] [3. 6. 9.] [0. 2. 4.] [7. 7. 7.]]
We get a numpy array of values from the CSV file.
Is genfromtxt()
reading the first value as nan?
A common error users face when reading CSV files with the numpy genfromtxt()
function is that the first value in the returned numpy array is missing (nan).
This generally occurs if the file begins with a Byte Order Mark (BOM). For example, for the CSV file below note that its encoding is “UTF-8 with BOM”
Now, if you try to read this CSV file with the np.genfromtxt()
function, this is what we get –
# read csv arr2 = np.genfromtxt("sample_data2.csv", delimiter=",") # display the array print(arr2)
Output:
[[nan 4. 7.] [ 2. 5. 8.] [ 3. 6. 9.] [ 0. 2. 4.] [ 7. 7. 7.]]
Notice that the first element in the array is a nan value. This happened due to the encoding of the file which included a BOM.
If such an issue occurs, try reading the file with the encoding “utf-8-sig”
# read csv arr2 = np.genfromtxt("sample_data2.csv", delimiter=",", encoding="utf-8-sig") # display the array print(arr2)
Output:
[[1. 4. 7.] [2. 5. 8.] [3. 6. 9.] [0. 2. 4.] [7. 7. 7.]]
Now the CSV file is read correctly.
Alternatively, you can also save the file with the basic “UTF-8” encoding using Save As and then read it without specifying the encoding like we did in the earlier examples.
# read csv arr3 = np.genfromtxt("sample_data3.csv", delimiter=",") # display the array print(arr3)
Output:
[[1. 4. 7.] [2. 5. 8.] [3. 6. 9.] [0. 2. 4.] [7. 7. 7.]]
You can see that now the file is read correctly.
For more on the numpy genfromtxt() function, refer to its documentation.
With this, we come to the end of this tutorial. The code examples and results presented in this tutorial have been implemented in a Jupyter Notebook with a python (version 3.8.3) kernel having numpy version 1.18.5
Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.
Tutorials on numpy arrays –
- How to sort a Numpy Array?
- Create Pandas DataFrame from a Numpy Array
- Different ways to Create NumPy Arrays
- Convert Numpy array to a List – With Examples
- Append Values to a Numpy Array
- Find Index of Element in Numpy Array
- Read CSV file as NumPy Array
- Filter a Numpy Array – With Examples
- Python – Randomly select value from a list
- Numpy – Sum of Values in Array
- Numpy – Elementwise sum of two arrays
- Numpy – Elementwise multiplication of two arrays
- Using the numpy linspace() method
- Using numpy vstack() to vertically stack arrays
- Numpy logspace() – Usage and Examples
- Using the numpy arange() method
- Using numpy hstack() to horizontally stack arrays
- Trim zeros from a numpy array in Python
- Get unique values and counts in a numpy array
- Horizontally split numpy array with hsplit()