Friday, November 14, 2025
HomeLanguagesNumpy MaskedArray.masked_greater() function | Python

Numpy MaskedArray.masked_greater() function | Python

In many circumstances, datasets can be incomplete or tainted by the presence of invalid data. For example, a sensor may have failed to record a data, or recorded an invalid value. The numpy.ma module provides a convenient way to address this issue, by introducing masked arrays.Masked arrays are arrays that may have missing or invalid entries.

numpy.MaskedArray.masked_greater() function is used to mask an array where greater than a given value.This function is a shortcut to masked_where, with condition = (arr > value).

Syntax : numpy.ma.masked_greater(arr, value, copy=True)

Parameters:
arr : [ndarray] Input array which we want to mask.
value : [int] It is used to mask the array element which are > value.
copy : [bool] If True (default) make a copy of arr in the result. If False modify arr in place and return a view.

Return : [ MaskedArray] The resultant array after masking.

Code #1 :




# Python program explaining
# numpy.MaskedArray.masked_greater() method 
  
# importing numpy as geek 
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
  
# creating input array 
in_arr = geek.array([1, 2, 3, -1, 2])
print ("Input array : ", in_arr)
  
# applying MaskedArray.masked_greater methods 
# to input array where value>2
mask_arr = ma.masked_greater(in_arr, 2)
print ("Masked array : ", mask_arr)


Output:

Input array :  [ 1  2  3 -1  2]
Masked array :  [1 2 -- -1 2]

 

Code #2 :




# Python program explaining
# numpy.MaskedArray.masked_greater() method 
  
# importing numpy as geek 
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
  
# creating input array 
in_arr = geek.array([5e8, 3e-5, -45.0, 4e4, 5e2])
print ("Input array : ", in_arr)
  
# applying MaskedArray.masked_greater methods 
# to input array where value>5e2
mask_arr = ma.masked_greater(in_arr, 5e2)
print ("Masked array : ", mask_arr)


Output:

Input array :  [ 5.0e+08  3.0e-05 -4.5e+01  4.0e+04  5.0e+02]
Masked array :  [-- 3e-05 -45.0 -- 500.0]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7141 POSTS0 COMMENTS
Thapelo Manthata
6837 POSTS0 COMMENTS
Umr Jansen
6839 POSTS0 COMMENTS