
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Return the cumulative sum of array elements treating NaNs as zero but change the type of result in Python
To return the cumulative sum of array elements over a given axis treating NaNs as zero, use the nancumprod() method. The cumulative sum does not change when NaNs are encountered and leading NaNs are replaced by zeros. Zeros are returned for slices that are all-NaN or empty.
The 1st parameter is the input array. The 2nd parameter is the axis along which the cumulative sum is computed. The default (None) is to compute the cumsum over the flattened array. The 3rd parameter is the type of the returned array and of the accumulator in which the elements are summed. If dtype is not specified, it defaults to the dtype of a, unless a has an integer dtype with a precision less than that of the default platform integer. In that case, the default platform integer is used. The 4th parameter is the 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.
Steps
At first, import the required library −
import numpy as np
Creating a numpy array using the array() method. We have added elements of int type with nan −
arr = np.array([[10, 20, 30], [40, np.nan, 60]])
Display the array −
print("Our Array...\n",arr)
Check the Dimensions −
print("\nDimensions of our Array...\n",arr.ndim)
Get the Datatype −
print("\nDatatype of our Array object...\n",arr.dtype)
To return the cumulative sum of array elements over a given axis treating NaNs as zero, use the nancumprod() method. The cumulative sum does not change when NaNs are encountered and leading NaNs are replaced by zeros −
print("\nCumulative Sum of array elements...\n",np.nancumsum(arr, axis = 1, dtype = int))
Example
import numpy as np # Creating a numpy array using the array() method # We have added elements of int type with nan arr = np.array([[10, 20, 30], [40, np.nan, 60]]) # Display the array print("Our Array...\n",arr) # Check the Dimensions print("\nDimensions of our Array...\n",arr.ndim) # Get the Datatype print("\nDatatype of our Array object...\n",arr.dtype) # To return the cumulative sum of array elements over a given axis treating NaNs as zero, use the nancumprod() method print("\nCumulative Sum of array elements...\n",np.nancumsum(arr, axis = 1, dtype = int))
Output
Our Array... [[10. 20. 30.] [40. nan 60.]] Dimensions of our Array... 2 Datatype of our Array object... float64 Cumulative Sum of array elements... [[ 10 30 60] [ 40 40 100]]
- Related Articles
- Return the cumulative sum of array elements treating NaNs as zero in Python
- Return the cumulative product treating NaNs as one but change the type of result in Python
- Return the cumulative sum of array elements over given axis treating NaNs as zero in Python
- Return the cumulative sum of array elements over given axis 0 treating NaNs as zero in Python
- Return the cumulative sum of array elements over given axis 1 treating NaNs as zero in Python
- Return the cumulative product of array elements treating NaNs as one in Python
- Return the cumulative product of array elements over axis 0 treating NaNs as one in Python
- Return the cumulative product of array elements over axis 1 treating NaNs as one in Python
- Return the cumulative product of array elements over a given axis treating NaNs as one in Python
- Return a new array with the same shape as a given array but change the default type in Numpy
- Python Pandas - Return a new Index with elements of index not in other but unsort the result
- Cumulative sum of elements in JavaScript
- Return the minimum of an array or minimum ignoring any NaNs in Python
- Return the maximum of an array or maximum ignoring any NaNs in Python
- Return an array of zeroes with the same shape as a given array but with a different type in Numpy
