- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Return range of values from a masked array for each column in Numpy
To return the range of values from a masked array, use the ma.MaskedArray.ptp() method in Numpy. Peak to peak (maximum - minimum) value along a given axis. The axis is set using the axis parameter.
The ptp() method returns a new array holding the result, unless out was specified, in which case a reference to out is returned.
The axis parameter is the axis along which to find the peaks. If None (default) the flattened array is used. The out is a parameter, an alternative output array in which to place the result. It must have the same shape and buffer length as the expected output but the type will be cast if necessary.
The keepdims parameter, if set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the array.
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([[49, 85, 45], [67, 33, 59]]) print("Array...
", arr) print("
Array type...
", arr.dtype)
Get the dimensions of the Array −
print("Array Dimensions...
",arr.ndim)
Create a masked array and mask some of them as invalid −
maskArr = ma.masked_array(arr, mask =[[0, 0, 1], [ 0, 1, 0]]) print("
Our Masked Array
", maskArr) print("
Our Masked Array type...
", maskArr.dtype)
Get the dimensions of the Masked Array −
print("
Our Masked Array Dimensions...
",maskArr.ndim)
Get the shape of the Masked Array −
print("
Our Masked Array Shape...
",maskArr.shape)
Get the number of elements of the Masked Array −
print("
Elements in the Masked Array...
",maskArr.size)
To return the range of values from a masked array, use the ma.MaskedArray.ptp() method in Numpy. Peak to peak (maximum - minimum) value along a given axis. The axis is set using the axis parameter. The value 0 gets the range of values for each column −
print("
Peak to peak value (max - min) for each column...
", np.ptp(maskArr, axis=0))
Example
# Python ma.MaskedArray - Return range of values from a masked array for each column import numpy as np import numpy.ma as ma # Create an array with int elements using the numpy.array() method arr = np.array([[55, 85, 68, 84], [67, 33, 39, 53], [29, 88, 51, 37],[56, 45, 99, 85]]) print("Array...
", arr) print("
Array type...
", arr.dtype) # Get the dimensions of the Array print("
Array Dimensions...
",arr.ndim) # Create a masked array and mask some of them as invalid maskArr = ma.masked_array(arr, mask =[[1, 1, 0, 0], [ 0, 0, 1, 0],[0, 0, 0, 1], [0, 1, 0, 0]]) print("
Our Masked Array
", maskArr) print("
Our Masked Array type...
", maskArr.dtype) # Get the dimensions of the Masked Array print("
Our Masked Array Dimensions...
",maskArr.ndim) # Get the shape of the Masked Array print("
Our Masked Array Shape...
",maskArr.shape) # Get the number of elements of the Masked Array print("
Elements in the Masked Array...
",maskArr.size) # To return the range of values from a masked array, use the ma.MaskedArray.ptp() method in Numpy. # Peak to peak (maximum - minimum) value along a given axis. # The axis is set using the axis parameter # The value 0 gets the range of values for each column print("
Peak to peak value (max - min) for each column...
",np.ptp(maskArr, axis=0))
Output
Array... [[55 85 68 84] [67 33 39 53] [29 88 51 37] [56 45 99 85]] Array type... int64 Array Dimensions... 2 Our Masked Array [[-- -- 68 84] [67 33 -- 53] [29 88 51 --] [56 -- 99 85]] Our Masked Array type... int64 Our Masked Array Dimensions... 2 Our Masked Array Shape... (4, 4) Elements in the Masked Array... 16 Peak to peak value (max - min) for each column... [38 55 48 32]
- Related Articles
- Return range of values from the masked array for each row in Numpy
- Return range of values from a masked array along a given axis in NumPy
- Return array of indices of the maximum values from a masked array in NumPy
- Return array of indices of the minimum values from a masked array in NumPy
- Return an array formed from the elements of a masked array but clip the range in NumPy
- Return an array formed from the elements of a masked array but wrap around range in NumPy
- Return specified diagonals from a masked array in NumPy
- Return array of indices of the maximum values along axis 0 from a masked array in NumPy
- Return array of indices of the maximum values along axis 1 from a masked array in NumPy
- Return array of indices of the minimum values along axis 0 from a masked array in NumPy
- Return array of indices of the minimum values along axis 1 from a masked array in NumPy
- Return each element of the masked array rounded in Numpy
- Return a copy of the masked array in NumPy
- Return the mask of a masked array in Numpy
- Return the variance of the masked array elements along column axis in Numpy
