...

/

Processing NumPy Arrays

Processing NumPy Arrays

In this lesson, you will explore some more NumPy array processing techniques.

So far, we have discussed the basics of NumPy. Now, these techniques will be applied to data along with some advanced functions to see what more can be achieved.

NumPy array processing functions

Now, let’s discuss some NumPy functions that help in array processing.

NumPy where function

Let’s look at an example of the where function and try to understand it.

Press + to interact
import numpy as np
# Declare 2 arrays
arr1 = np.array([10, 20, 30, 40])
arr2 = np.array([500, 600, 700, 800])
cond = np.array([False, True, False, True]) # Create an array with bool operators
res = np.where(cond, arr1, arr2) # apply the where condition
print(res)

What exactly happened here? The NumPy where function took 3 values cond, arr1, and arr2. This function first checks the value for cond. If the value of cond is True, then ...