Friday, October 24, 2025
HomeLanguagesnumpy.nancumprod() in Python

numpy.nancumprod() in Python

numpy.nancumprod() function is used when we want to compute the cumulative product of array elements over a given axis treating Not a Numbers (NaNs) as one. The cumulative product does not change when NaNs are encountered and leading NaNs are replaced by ones. Ones are returned for slices that are all-NaN or empty.

Syntax : numpy.nancumprod(arr, axis=None, dtype=None, out=None)

Parameters :
arr : [array_like] Array containing numbers whose sum is desired. If arr is not an array, a conversion is attempted.
axis : Axis along which the cumulative product is computed. The default is to compute the product of the flattened array.
dtype : Type of the returned array, as well as of the accumulator in which the elements are multiplied. If dtype is not specified, it defaults to the dtype of arr, unless arr has an integer dtype with a precision less than that of the default platform integer. In that case, the default platform integer is used instead.
out : [ndarray, optional] A location into which the result is stored.
  -> If provided, it must have a shape that the inputs broadcast to.
  -> If not provided or None, a freshly-allocated array is returned.

Return : A new array holding the result is returned unless out is specified, in which case it is returned.

Code #1 : Working




# Python program explaining
# numpy.nancumprod() function
  
import numpy as geek
in_num = 10
  
print ("Input  number : ", in_num)
    
out_prod = geek.nancumprod(in_num) 
print ("cumulative product of input number : ", out_prod) 


Output :

Input  number :  10
cumulative product of input number :  [10]

 
Code #2 :




# Python program explaining
# numpy.nancumprod() function
  
import numpy as geek
  
in_arr = geek.array([[2, 2, 2], [2, 2, geek.nan]])
   
print ("Input array : ", in_arr) 
    
out_prod = geek.nancumprod(in_arr) 
print ("cumulative product of array elements: ", out_prod) 


Output :

Input array :  [[  2.   2.   2.]
 [  2.   2.  nan]]
cumulative product of array elements:  [  2.   4.   8.  16.  32.  32.]

 
Code #3 :




# Python program explaining
# numpy.nancumprod() function
  
import numpy as geek
  
in_arr = geek.array([[2, 2, 2], [2, 2, geek.nan]])
   
print ("Input array : ", in_arr) 
    
out_prod = geek.nancumprod(in_arr, axis = 1) 
print ("cumulative product of array elements taking axis 1: ", out_prod) 


Output :

Input array :  [[  2.   2.   2.]
 [  2.   2.  nan]]
cumulative product of array elements taking axis 1:  [[ 2.  4.  8.]
 [ 2.  4.  4.]]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS