Mask an array where less than or equal to a given value in Numpy

To mask an array where less than equal to a given value, use the numpy.ma.masked_less_equal() method in Python Numpy. This function is a shortcut to masked_where, with condition = (x <= value).

A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, or an array of booleans that determines for each element of the associated array whether the value is valid or not.

Steps

At first, import the required library −

import numpy as np
import numpy.ma as ma

Create an array with int elements using the numpy.array() method −

arr = np.array([[83, 55, 73], [90, 49, 39], [73, 87, 51], [82, 45, 67]])
print("Array...
", arr)

Get the type pf array −

print("\nArray type...
", arr.dtype)

Get the dimensions of the Array −

print("\nArray Dimensions...
",arr.ndim)

Get the shape of the Array −

print("\nOur Array Shape...
",arr.shape)

Get the number of elements of the Array −

print("\nNumber of Elements in the Array...
",arr.size)

To mask an array where less than equal to a given value, use the numpy.ma.masked_less_equal() method. Here, we will the array less than equal to value 73 −

print("\nResult...
",np.ma.masked_less_equal(arr, 73))

Example

import numpy as np
import numpy.ma as ma

# Create an array with int elements using the numpy.array() method
arr = np.array([[83, 55, 73], [90, 49, 39], [73, 87, 51], [82, 45, 67]])
print("Array...
", arr) # Get the type pf array print("\nArray type...
", arr.dtype) # Get the dimensions of the Array print("\nArray Dimensions...
",arr.ndim) # Get the shape of the Array print("\nOur Array Shape...
",arr.shape) # Get the number of elements of the Array print("\nNumber of Elements in the Array...
",arr.size) # To mask an array where less than equal to a given value, use the numpy.ma.masked_less_equal() method in Python Numpy # Here, we will the array less than equal to value 73 print("\nResult...
",np.ma.masked_less_equal(arr, 73))

Output

Array...
[[83 55 73]
[90 49 39]
[73 87 51]
[82 45 67]]

Array type...
int64

Array Dimensions...
2

Our Array Shape...
(4, 3)

Number of Elements in the Array...
12

Result...
[[83 -- --]
[90 -- --]
[-- 87 --]
[82 -- --]]
Updated on: 2022-02-05T11:22:33+05:30

337 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements