Python numpy.nancumprod()

Python numpy.nancumprod()

numpy.nancumprod()当我们想计算数组元素在给定轴上的累积乘积时,将非数字(NaNs)视为1。当遇到NaNs时,累积乘积不会改变,并且前导NaNs被替换为1。对于全部为NaN或空的片子,则返回1。

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

参数 :
arr :[array_like] 包含数字的数组,其总和是需要的。如果arr不是一个数组,将尝试进行转换。
axis :计算累积乘积的轴。默认是计算扁平化阵列的乘积。
dtype :返回数组的类型,以及元素相乘的累加器的类型。如果没有指定dtype,默认为arr的dtype,除非arr的整数dtype的精度小于默认平台的整数。在这种情况下,将使用默认的平台整数来代替。
out :[ndarray, optional] 一个储存结果的位置。
-> 如果提供,它必须有一个输入广播到的形状。
-> 如果没有提供或没有,将返回一个新分配的数组。

返回 :除非指定了out,否则将返回一个容纳结果的新数组,在这种情况下将返回。

**代码 #1 : **

# 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) 

输出 :

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

代码 #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) 

输出 :

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

代码 #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) 

输出 :

Input array :  [[  2.   2.   2.]
 [  2.   2.  nan]]
cumulative product of array elements taking axis 1:  [[ 2.  4.  8.]
 [ 2.  4.  4.]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程