Num Py
Num Py
What is NumPy?
NumPy is a python library used for working with arrays.
Arrays are very frequently used in data science, where speed and resources
are very important.
This is the main reason why NumPy is faster than lists. Also it is optimized to
work with latest CPU architectures.
Which Language is NumPy written in?
NumPy is a Python library and is written partially in Python, but most of the
parts that require fast computation are written in C or C++.
If this command fails, then use a python distribution that already has NumPy
installed like, Anaconda, Spyder etc.
Import NumPy
Once NumPy is installed, import it in your applications by adding
the import keyword:
import numpy
Example
import numpy
print(arr)
NumPy as np
NumPy is usually imported under the np alias.
alias: In Python alias are an alternate name for referring to the same thing.
import numpy as np
Example
import numpy as np
print(arr)
Example
import numpy as np
print(np.__version__)
print(arr)
print(type(arr))
type(): This built-in Python function tells us the type of the object passed to
it. Like in above code it shows that arr is numpy.ndarray type.
To create an ndarray, we can pass a list, tuple or any array-like object into
the array() method, and it will be converted into an ndarray:
Example
Use a tuple to create a NumPy array:
import numpy as np
print(arr)
-----------------------------------------------------------------------------------------------------------------
(Additional notes)
Dimensions in Arrays
A dimension in arrays is one level of array depth (nested arrays).
0-D Arrays
0-D arrays, or Scalars, are the elements in an array. Each value in an array
is a 0-D array.
Example
Create a 0-D array with value 42
import numpy as np
arr = np.array(42)
print(arr)
1-D Arrays
An array that has 0-D arrays as its elements is called uni-dimensional or 1-D
array.
Example
Create a 1-D array containing the values 1,2,3,4,5:
import numpy as np
print(arr)
Try it Yourself »
2-D Arrays
An array that has 1-D arrays as its elements is called a 2-D array.
import numpy as np
print(arr)
Try it Yourself »
3-D arrays
An array that has 2-D arrays (matrices) as its elements is called 3-D array.
Example
Create a 3-D array with two 2-D arrays, both containing two arrays with the
values 1,2,3 and 4,5,6:
import numpy as np
print(arr)
Try it Yourself »
Example
Check how many dimensions the arrays have:
import numpy as np
a = np.array(42)
b = np.array([1, 2, 3, 4, 5])
c = np.array([[1, 2, 3], [4, 5, 6]])
d = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])
print(a.ndim)
print(b.ndim)
print(c.ndim)
print(d.ndim)
Try it Yourself »
When the array is created, you can define the number of dimensions by
using the ndmin argument.
Example
Create an array with 5 dimensions and verify that it has 5 dimensions:
import numpy as np
print(arr)
print('number of dimensions :', arr.ndim)
Try it Yourself »
In this array the innermost dimension (5th dim) has 4 elements, the 4th dim
has 1 element that is the vector, the 3rd dim has 1 element that is the
matrix with the vector, the 2nd dim has 1 element that is 3D array and 1st
dim has 1 element that is a 4D array.
The indexes in NumPy arrays start with 0, meaning that the first element has
index 0, and the second has index 1 etc.
Example
Get the first element from the following array:
import numpy as np
print(arr[0])
Try it Yourself »
Example
Get the second element from the following array.
import numpy as np
print(arr[1])
Try it Yourself »
Example
Get third and fourth elements from the following array and add them.
import numpy as np
print(arr[2] + arr[3])
Try it Yourself »
Example
Access the 2nd element on 1st dim:
import numpy as np
Try it Yourself »
Example
Access the 5th element on 2nd dim:
import numpy as np
Try it Yourself »
Example
Access the third element of the second array of the first array:
import numpy as np
arr = np.array([[[1, 2, 3], [4, 5, 6]], [[7, 8, 9], [10, 11, 12]]])
print(arr[0, 1, 2])
Try it Yourself »
Example Explained
arr[0, 1, 2] prints the value 6.
The first number represents the first dimension, which contains two arrays:
[[1, 2, 3], [4, 5, 6]]
and:
[[7, 8, 9], [10, 11, 12]]
Since we selected 0, we are left with the first array:
[[1, 2, 3], [4, 5, 6]]
The second number represents the second dimension, which also contains
two arrays:
[1, 2, 3]
and:
[4, 5, 6]
Since we selected 1, we are left with the second array:
[4, 5, 6]
The third number represents the third dimension, which contains three
values:
4
5
6
Since we selected 2, we end up with the third value:
6
Negative Indexing
Use negative indexing to access an array from the end.
Example
Print the last element from the 2nd dim:
import numpy as np
Slicing arrays
Slicing in python means taking elements from one given index to another
given index.
Example
Slice elements from index 1 to index 5 from the following array:
import numpy as np
print(arr[1:5])
Try it Yourself »
Note: The result includes the start index, but excludes the end index.
Example
Slice elements from index 4 to the end of the array:
import numpy as np
print(arr[4:])
Try it Yourself »
Example
Slice elements from the beginning to index 4 (not included):
import numpy as np
print(arr[:4])
Try it Yourself »
Negative Slicing
Use the minus operator to refer to an index from the end:
Example
Slice from the index 3 from the end to index 1 from the end:
import numpy as np
print(arr[-3:-1])
Try it Yourself »
STEP
Use the step value to determine the step of the slicing:
Example
Return every other element from index 1 to index 5:
import numpy as np
print(arr[1:5:2])
Try it Yourself »
Example
Return every other element from the entire array:
import numpy as np
print(arr[::2])
Try it Yourself »
import numpy as np
print(arr[1, 1:4])
Try it Yourself »
import numpy as np
print(arr[0:2, 2])
Try it Yourself »
Example
From both elements, slice index 1 to index 4 (not included), this will return a
2-D array:
import numpy as np
print(arr[0:2, 1:4])
strings - used to represent text data, the text is given under quote
marks. eg. "ABCD"
integer - used to represent integer numbers. eg. -1, -2, -3
Below is a list of all data types in NumPy and the characters used to
represent them.
i - integer
b - boolean
u - unsigned integer
f - float
c - complex float
m - timedelta
M - datetime
O - object
S - string
U - unicode string
Example
Get the data type of an array object:
import numpy as np
print(arr.dtype)
Try it Yourself »
Example
Get the data type of an array containing strings:
import numpy as np
print(arr.dtype)
Try it Yourself »
Example
Create an array with data type string:
import numpy as np
print(arr)
print(arr.dtype)
Try it Yourself »
Example
Create an array with data type 4 bytes integer:
import numpy as np
Try it Yourself »
Example
A non integer string like 'a' can not be converted to integer (will raise an
error):
import numpy as np
Try it Yourself »
The astype() function creates a copy of the array, and allows you to specify
the data type as a parameter.
The data type can be specified using a string, like 'f' for float, 'i' for integer
etc. or you can use the data type directly like float for float and int for
integer.
Example
Change data type from float to integer by using 'i' as parameter value:
import numpy as np
newarr = arr.astype('i')
print(newarr)
print(newarr.dtype)
Try it Yourself »
Example
Change data type from float to integer by using int as parameter value:
import numpy as np
newarr = arr.astype(int)
print(newarr)
print(newarr.dtype)
Try it Yourself »
Example
Change data type from integer to boolean:
import numpy as np
newarr = arr.astype(bool)
print(newarr)
print(newarr.dtype)
The copy owns the data and any changes made to the copy will not affect
original array, and any changes made to the original array will not affect the
copy.
The view does not own the data and any changes made to the view will affect
the original array, and any changes made to the original array will affect the
view.
COPY:
Example
Make a copy, change the original array, and display both arrays:
import numpy as np
print(arr)
print(x)
Try it Yourself »
The copy SHOULD NOT be affected by the changes made to the original
array.
VIEW:
Example
Make a view, change the original array, and display both arrays:
import numpy as np
print(arr)
print(x)
Try it Yourself »
The view SHOULD be affected by the changes made to the original array.
import numpy as np
print(arr)
print(x)
Try it Yourself »
The original array SHOULD be affected by the changes made to the view.
Every NumPy array has the attribute base that returns None if the array owns
the data.
import numpy as np
x = arr.copy()
y = arr.view()
print(x.base)
print(y.base)
Try it Yourself »
Shape of an Array
The shape of an array is the number of elements in each dimension.
Example
Print the shape of a 2-D array:
import numpy as np
print(arr.shape)
Try it Yourself »
The example above returns (2, 4), which means that the array has 2
dimensions, and each dimension has 4 elements.
Example
Create an array with 5 dimensions using ndmin using a vector with values
1,2,3,4 and verify that last dimension has value 4:
import numpy as np
print(arr)
print('shape of array :', arr.shape)
Try it Yourself »
In the example above at index-4 we have value 4, so we can say that 5th ( 4
+ 1 th) dimension has 4 elements.
Reshaping arrays
Reshaping means changing the shape of an array.
The shape of an array is the number of elements in each dimension.
import numpy as np
newarr = arr.reshape(4, 3)
print(newarr)
Try it Yourself »
The outermost dimension will have 2 arrays that contains 3 arrays, each with
2 elements:
import numpy as np
newarr = arr.reshape(2, 3, 2)
print(newarr)
Try it Yourself »
Can We Reshape Into any Shape?
Yes, as long as the elements required for reshaping are equal in both shapes.
Example
Try converting 1D array with 8 elements to a 2D array with 3 elements in
each dimension (will raise an error):
import numpy as np
newarr = arr.reshape(3, 3)
print(newarr)
Try it Yourself »
import numpy as np
print(arr.reshape(2, 4).base)
Try it Yourself »
Meaning that you do not have to specify an exact number for one of the
dimensions in the reshape method.
Pass -1 as the value, and NumPy will calculate this number for you.
Example
Convert 1D array with 8 elements to 3D array with 2x2 elements:
import numpy as np
print(newarr)
Try it Yourself »
Example
Convert the array into a 1D array:
import numpy as np
newarr = arr.reshape(-1)
print(newarr)
Try it Yourself »
Note: There are a lot of functions for changing the shapes of arrays in
numpy flatten, ravel and also for rearranging the
elements rot90, flip, fliplr, flipud etc. These fall under Intermediate to
Advanced section of numpy.
Iterating Arrays
Iterating means going through elements one by one.
Example
Iterate on the elements of the following 1-D array:
import numpy as np
for x in arr:
print(x)
Try it Yourself »
import numpy as np
for x in arr:
print(x)
Try it Yourself »
To return the actual values, the scalars, we have to iterate the arrays in each
dimension.
Example
Iterate on each scalar element of the 2-D array:
import numpy as np
for x in arr:
for y in x:
print(y)
Try it Yourself »
Example
Iterate on the elements of the following 3-D array:
import numpy as np
arr = np.array([[[1, 2, 3], [4, 5, 6]], [[7, 8, 9], [10, 11, 12]]])
for x in arr:
print(x)
Try it Yourself »
To return the actual values, the scalars, we have to iterate the arrays in each
dimension.
Example
Iterate down to the scalars:
import numpy as np
arr = np.array([[[1, 2, 3], [4, 5, 6]], [[7, 8, 9], [10, 11, 12]]])
for x in arr:
for y in x:
for z in y:
print(z)
Try it Yourself »
Example
Iterate through the following 3-D array:
import numpy as np
arr = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]]])
for x in np.nditer(arr):
print(x)
Try it Yourself »
NumPy does not change the data type of the element in-place (where the
element is in array) so it needs some other space to perform this action, that
extra space is called buffer, and in order to enable it in nditer() we
pass flags=['buffered'].
Example
Iterate through the array as a string:
import numpy as np
Try it Yourself »
Example
Iterate through every scalar element of the 2D array skipping 1 element:
import numpy as np
arr = np.array([[1, 2, 3, 4], [5, 6, 7, 8]])
Try it Yourself »
Example
Enumerate on following 1D arrays elements:
import numpy as np
Try it Yourself »
Example
Enumerate on following 2D array's elements:
import numpy as np
Example
Join two arrays
import numpy as np
print(arr)
Try it Yourself »
Example
Join two 2-D arrays along rows (axis=1):
import numpy as np
print(arr)
Try it Yourself »
We can concatenate two 1-D arrays along the second axis which would result
in putting them one over the other, ie. stacking.
Example
import numpy as np
print(arr)
Try it Yourself »
Example
import numpy as np
Try it Yourself »
Example
import numpy as np
print(arr)
Try it Yourself »
Example
import numpy as np
print(arr)
NumPy Splitting Array
❮ PreviousNext ❯
Joining merges multiple arrays into one and Splitting breaks one array into
multiple.
We use array_split() for splitting arrays, we pass it the array we want to split
and the number of splits.
Example
Split the array in 3 parts:
import numpy as np
newarr = np.array_split(arr, 3)
print(newarr)
Try it Yourself »
If the array has less elements than required, it will adjust from the end
accordingly.
Example
Split the array in 4 parts:
import numpy as np
newarr = np.array_split(arr, 4)
print(newarr)
Try it Yourself »
Note: We also have the method split() available but it will not adjust the
elements when elements are less in source array for splitting like in example
above, array_split() worked properly but split() would fail.
If you split an array into 3 arrays, you can access them from the result just
like any array element:
Example
Access the splitted arrays:
import numpy as np
newarr = np.array_split(arr, 3)
print(newarr[0])
print(newarr[1])
print(newarr[2])
Try it Yourself »
Use the array_split() method, pass in the array you want to split and the
number of splits you want to do.
Example
Split the 2-D array into three 2-D arrays.
import numpy as np
arr = np.array([[1, 2], [3, 4], [5, 6], [7, 8], [9, 10], [11, 12]])
newarr = np.array_split(arr, 3)
print(newarr)
Try it Yourself »
Let's look at another example, this time each element in the 2-D arrays
contains 3 elements.
Example
Split the 2-D array into three 2-D arrays.
import numpy as np
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12],
[13, 14, 15], [16, 17, 18]])
newarr = np.array_split(arr, 3)
print(newarr)
Try it Yourself »
In addition, you can specify which axis you want to do the split around.
The example below also returns three 2-D arrays, but they are split along the
row (axis=1).
Example
Split the 2-D array into three 2-D arrays along rows.
import numpy as np
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12],
[13, 14, 15], [16, 17, 18]])
print(newarr)
Try it Yourself »
Example
Use the hsplit() method to split the 2-D array into three 2-D arrays along
rows.
import numpy as np
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12],
[13, 14, 15], [16, 17, 18]])
newarr = np.hsplit(arr, 3)
print(newarr)
Try it Yourself »
Searching Arrays
You can search an array for a certain value, and return the indexes that get a
match.
import numpy as np
x = np.where(arr == 4)
print(x)
Try it Yourself »
Example
Find the indexes where the values are even:
import numpy as np
x = np.where(arr%2 == 0)
print(x)
Try it Yourself »
Example
Find the indexes where the values are odd:
import numpy as np
x = np.where(arr%2 == 1)
print(x)
Try it Yourself »
Search Sorted
There is a method called searchsorted() which performs a binary search in the
array, and returns the index where the specified value would be inserted to
maintain the search order.
Example
Find the indexes where the value 7 should be inserted:
import numpy as np
x = np.searchsorted(arr, 7)
print(x)
Try it Yourself »
The method starts the search from the left and returns the first index where
the number 7 is no longer larger than the next value.
Example
Find the indexes where the value 7 should be inserted, starting from the
right:
import numpy as np
x = np.searchsorted(arr, 7, side='right')
print(x)
Try it Yourself »
The method starts the search from the right and returns the first index where
the number 7 is no longer less than the next value.
Multiple Values
To search for more than one value, use an array with the specified values.
Example
Find the indexes where the values 2, 4, and 6 should be inserted:
import numpy as np
print(x)
Try it Yourself »
Sorting Arrays
Sorting means putting elements in an ordered sequence.
Ordered sequence is any sequence that has an order corresponding to
elements, like numeric or alphabetical, ascending or descending.
The NumPy ndarray object has a function called sort(), that will sort a
specified array.
Example
Sort the array:
import numpy as np
print(np.sort(arr))
Try it Yourself »
Note: This method returns a copy of the array, leaving the original array
unchanged.
You can also sort arrays of strings, or any other data type:
Example
Sort the array alphabetically:
import numpy as np
print(np.sort(arr))
Try it Yourself »
Example
Sort a boolean array:
import numpy as np
print(np.sort(arr))
Try it Yourself »
Sorting a 2-D Array
If you use the sort() method on a 2-D array, both arrays will be sorted:
Example
Sort a 2-D array:
import numpy as np
print(np.sort(arr))
Filtering Arrays
Getting some elements out of an existing array and creating a new array out
of them is called filtering.
If the value at an index is True that element is contained in the filtered array,
if the value at that index is False that element is excluded from the filtered
array.
Example
Create an array from the elements on index 0 and 2:
import numpy as np
arr = np.array([41, 42, 43, 44])
newarr = arr[x]
print(newarr)
Try it Yourself »
Because the new filter contains only the values where the filter array had the
value True, in this case, index 0 and 2.
Example
Create a filter array that will return only values higher than 42:
import numpy as np
newarr = arr[filter_arr]
print(filter_arr)
print(newarr)
Try it Yourself »
Example
Create a filter array that will return only even elements from the original
array:
import numpy as np
newarr = arr[filter_arr]
print(filter_arr)
print(newarr)
Try it Yourself »
We can directly substitute the array instead of the iterable variable in our
condition and it will work just as we expect it to.
Example
Create a filter array that will return only values higher than 42:
import numpy as np
newarr = arr[filter_arr]
print(filter_arr)
print(newarr)
Try it Yourself »
Example
Create a filter array that will return only even elements from the original
array:
import numpy as np
filter_arr = arr % 2 == 0
newarr = arr[filter_arr]
print(filter_arr)
print(newarr)
We do not need truly random numbers, unless its related to security (e.g.
encryption keys) or the basis of application is the randomness (e.g. Digital
roulette wheels).
Example
Generate a random integer from 0 to 100:
x = random.randint(100)
print(x)
Try it Yourself »
Generate Random Float
The random module's rand() method returns a random float between 0 and 1.
Example
Generate a random float from 0 to 1:
x = random.rand()
print(x)
Try it Yourself »
Integers
The randint() method takes a size parameter where you can specify the
shape of an array.
Example
Generate a 1-D array containing 5 random integers from 0 to 100:
x=random.randint(100, size=(5))
print(x)
Try it Yourself »
Example
Generate a 2-D array with 3 rows, each row containing 5 random integers
from 0 to 100:
print(x)
Try it Yourself »
Floats
The rand() method also allows you to specify the shape of the array.
Example
Generate a 1-D array containing 5 random floats:
x = random.rand(5)
print(x)
Try it Yourself »
Example
Generate a 2-D array with 3 rows, each row containing 5 random numbers:
x = random.rand(3, 5)
print(x)
Try it Yourself »
Example
Return one of the values in an array:
x = random.choice([3, 5, 7, 9])
print(x)
Try it Yourself »
Example
Generate a 2-D array that consists of the values in the array parameter (3,
5, 7, and 9):
print(x)