Numpy MaskedArray.anom() function | Python Last Updated : 30 Nov, 2022 Comments Improve Suggest changes Like Article Like Report 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.anom() function Compute the anomalies (deviations from the arithmetic mean) along the given axis.It returns an array of anomalies, with the same shape as the input and where the arithmetic mean is computed along the given axis. Syntax : numpy.MaskedArray.anom(axis=None, dtype=None) Parameters: axis : [int or None] Axis over which the anomalies are taken. dtype : [ dtype, optional] Type to use in computing the variance. Return : [ndarray]an array of anomalies. Code #1 : Python3 # Python program explaining # numpy.MaskedArray.anom() 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, 5]) print ("Input array : ", in_arr) # Now we are creating a masked array # by making third entry as invalid. mask_arr = ma.masked_array(in_arr, mask =[0, 0, 1, 0, 0]) print ("Masked array : ", mask_arr) # applying MaskedArray.anom methods to mask array out_arr = mask_arr.anom() print ("Output anomalies array : ", out_arr) Output: Input array : [ 1 2 3 -1 5] Masked array : [1 2 -- -1 5] Output anomalies array : [-0.75 0.25 -- -2.75 3.25] Code #2 : Python3 # Python program explaining # numpy.MaskedArray.anom() 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([10, 20, 30, 40, 50]) print ("Input array : ", in_arr) # Now we are creating a masked array by making # first and third entry as invalid. mask_arr = ma.masked_array(in_arr, mask =[1, 0, 1, 0, 0]) print ("Masked array : ", mask_arr) # applying MaskedArray.anom methods to mask array out_arr = mask_arr.anom() print ("Output anomalies array : ", out_arr) Output: input array : [10 20 30 40 50] Masked array : [-- 20 -- 40 50] Output anomalies array : [-- -16.666666666666664 -- 3.3333333333333357 13.333333333333336] Comment More infoAdvertise with us Next Article Numpy MaskedArray.anom() function | Python jana_sayantan Follow Improve Article Tags : Python Python-numpy Practice Tags : python Similar Reads Numpy MaskedArray.any() 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 arra 3 min read Numpy MaskedArray.all() 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 arr 3 min read Numpy MaskedArray.dot() function | Python numpy.MaskedArray.dot() function is used to calculate the dot product of two mask arrays. Syntax : numpy.ma.dot(arr1, arr2, strict=False) Parameters: arr1, arr2:[ ndarray] Inputs arrays. strict : [bool, optional] Whether masked data are propagated (True) or set to 0 (False) for the computation. Defa 3 min read Numpy MaskedArray.argmin() 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 arra 3 min read Numpy MaskedArray.argmax() 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 arra 3 min read Numpy MaskedArray.flatten() function | Python numpy.MaskedArray.flatten() function is used to return a copy of the input masked array collapsed into one dimension. Syntax : numpy.ma.flatten(order='C') Parameters: order : [âCâ, âFâ, âAâ, âKâ, optional] Whether to flatten in C (row-major), Fortran (column-major) order, or preserve the C/Fortran o 2 min read Numpy MaskedArray.argsort() 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 arra 3 min read Numpy MaskedArray.astype() 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 arra 2 min read Numpy MaskedArray.cumsum() function | Python numpy.MaskedArray.cumsum() Return the cumulative sum of the masked array elements over the given axis.Masked values are set to 0 internally during the computation. However, their position is saved, and the result will be masked at the same locations. Syntax : numpy.ma.cumsum(axis=None, dtype=None, o 3 min read Numpy MaskedArray.average() function | Python numpy.MaskedArray.average() function is used to return the weighted average of array over the given axis. Syntax : numpy.ma.average(arr, axis=None, weights=None, returned=False) Parameters: arr :[ array_like] Input masked array whose data to be averaged. Masked entries are not taken into account in 3 min read Like