Python numpy.nanprod() Examples
The following are 30 code examples for showing how to use numpy.nanprod(). These examples are extracted from open source projects. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example.
You may check out the related API usage on the sidebar.
You may also want to check out all available functions/classes of the module
numpy
, or try the search function
.
Example 1
Project: batchflow Author: analysiscenter File: domain.py License: Apache License 2.0 | 6 votes |
def __matmul__(self, other): if isinstance(other, Option): return self @ Domain(other) if self._is_array_option(): that = self._to_scalar_product() else: that = self if other._is_array_option(): other = other._to_scalar_product() if that._is_scalar_product() and other._is_scalar_product(): if len(that.cubes) == len(other.cubes): cubes = [cube_1 + cube_2 for cube_1, cube_2 in zip(that.cubes, other.cubes)] weights = np.nanprod(np.stack([that.weights, other.weights]), axis=0) nan_mask = np.logical_and(np.isnan(that.weights), np.isnan(other.weights)) weights[nan_mask] = np.nan return Domain(domain=cubes, weights=weights) raise ValueError("The numbers of domain cubes must conincide.")
Example 2
Project: recruit Author: Frank-qlu File: test_interaction.py License: Apache License 2.0 | 5 votes |
def test_nanfunctions_matrices_general(): # Check that it works and that type and # shape are preserved # 2018-04-29: moved here from core.tests.test_nanfunctions mat = np.matrix(np.eye(3)) for f in (np.nanargmin, np.nanargmax, np.nansum, np.nanprod, np.nanmean, np.nanvar, np.nanstd): res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 1)) res = f(mat) assert_(np.isscalar(res)) for f in np.nancumsum, np.nancumprod: res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3*3))
Example 3
Project: recruit Author: Frank-qlu File: test_nanfunctions.py License: Apache License 2.0 | 5 votes |
def test_nanprod(self): tgt = np.prod(self.mat) for mat in self.integer_arrays(): assert_equal(np.nanprod(mat), tgt)
Example 4
Project: recruit Author: Frank-qlu File: test_nanfunctions.py License: Apache License 2.0 | 5 votes |
def test_empty(self): for f, tgt_value in zip([np.nansum, np.nanprod], [0, 1]): mat = np.zeros((0, 3)) tgt = [tgt_value]*3 res = f(mat, axis=0) assert_equal(res, tgt) tgt = [] res = f(mat, axis=1) assert_equal(res, tgt) tgt = tgt_value res = f(mat, axis=None) assert_equal(res, tgt)
Example 5
Project: recruit Author: Frank-qlu File: test_panel.py License: Apache License 2.0 | 5 votes |
def test_prod(self): self._check_stat_op('prod', np.prod, skipna_alternative=np.nanprod)
Example 6
Project: recruit Author: Frank-qlu File: test_nanops.py License: Apache License 2.0 | 5 votes |
def test_nanprod(self): self.check_funs(nanops.nanprod, np.prod, allow_str=False, allow_date=False, allow_tdelta=False, empty_targfunc=np.nanprod)
Example 7
Project: lambda-packs Author: ryfeus File: test_nanfunctions.py License: MIT License | 5 votes |
def test_nanprod(self): tgt = np.prod(self.mat) for mat in self.integer_arrays(): assert_equal(np.nanprod(mat), tgt)
Example 8
Project: lambda-packs Author: ryfeus File: test_nanfunctions.py License: MIT License | 5 votes |
def test_empty(self): for f, tgt_value in zip([np.nansum, np.nanprod], [0, 1]): mat = np.zeros((0, 3)) tgt = [tgt_value]*3 res = f(mat, axis=0) assert_equal(res, tgt) tgt = [] res = f(mat, axis=1) assert_equal(res, tgt) tgt = tgt_value res = f(mat, axis=None) assert_equal(res, tgt)
Example 9
Project: auto-alt-text-lambda-api Author: abhisuri97 File: test_nanfunctions.py License: MIT License | 5 votes |
def test_nanprod(self): tgt = np.prod(self.mat) for mat in self.integer_arrays(): assert_equal(np.nanprod(mat), tgt)
Example 10
Project: auto-alt-text-lambda-api Author: abhisuri97 File: test_nanfunctions.py License: MIT License | 5 votes |
def test_empty(self): for f, tgt_value in zip([np.nansum, np.nanprod], [0, 1]): mat = np.zeros((0, 3)) tgt = [tgt_value]*3 res = f(mat, axis=0) assert_equal(res, tgt) tgt = [] res = f(mat, axis=1) assert_equal(res, tgt) tgt = tgt_value res = f(mat, axis=None) assert_equal(res, tgt)
Example 11
Project: vnpy_crypto Author: birforce File: test_nanfunctions.py License: MIT License | 5 votes |
def test_nanprod(self): tgt = np.prod(self.mat) for mat in self.integer_arrays(): assert_equal(np.nanprod(mat), tgt)
Example 12
Project: vnpy_crypto Author: birforce File: test_nanfunctions.py License: MIT License | 5 votes |
def test_empty(self): for f, tgt_value in zip([np.nansum, np.nanprod], [0, 1]): mat = np.zeros((0, 3)) tgt = [tgt_value]*3 res = f(mat, axis=0) assert_equal(res, tgt) tgt = [] res = f(mat, axis=1) assert_equal(res, tgt) tgt = tgt_value res = f(mat, axis=None) assert_equal(res, tgt)
Example 13
Project: vnpy_crypto Author: birforce File: test_panel.py License: MIT License | 5 votes |
def test_prod(self): self._check_stat_op('prod', np.prod, skipna_alternative=np.nanprod)
Example 14
Project: vnpy_crypto Author: birforce File: test_nanops.py License: MIT License | 5 votes |
def test_nanprod(self): self.check_funs(nanops.nanprod, np.prod, allow_str=False, allow_date=False, allow_tdelta=False, empty_targfunc=np.nanprod)
Example 15
Project: Mastering-Elasticsearch-7.0 Author: PacktPublishing File: test_interaction.py License: MIT License | 5 votes |
def test_nanfunctions_matrices_general(): # Check that it works and that type and # shape are preserved # 2018-04-29: moved here from core.tests.test_nanfunctions mat = np.matrix(np.eye(3)) for f in (np.nanargmin, np.nanargmax, np.nansum, np.nanprod, np.nanmean, np.nanvar, np.nanstd): res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 1)) res = f(mat) assert_(np.isscalar(res)) for f in np.nancumsum, np.nancumprod: res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3*3))
Example 16
Project: Mastering-Elasticsearch-7.0 Author: PacktPublishing File: test_nanfunctions.py License: MIT License | 5 votes |
def test_nanprod(self): tgt = np.prod(self.mat) for mat in self.integer_arrays(): assert_equal(np.nanprod(mat), tgt)
Example 17
Project: Mastering-Elasticsearch-7.0 Author: PacktPublishing File: test_nanfunctions.py License: MIT License | 5 votes |
def test_empty(self): for f, tgt_value in zip([np.nansum, np.nanprod], [0, 1]): mat = np.zeros((0, 3)) tgt = [tgt_value]*3 res = f(mat, axis=0) assert_equal(res, tgt) tgt = [] res = f(mat, axis=1) assert_equal(res, tgt) tgt = tgt_value res = f(mat, axis=None) assert_equal(res, tgt)
Example 18
Project: batchflow Author: analysiscenter File: domain.py License: Apache License 2.0 | 5 votes |
def __mul__(self, other): if isinstance(other, float) and np.isnan(other): return self if self.cubes is None: result = other elif isinstance(other, (int, float)): result = self weights = self.weights weights[np.isnan(weights)] = 1 result.weights = weights * other elif isinstance(other, Domain): if other.cubes is None: result = self else: res = list(product(self.cubes, other.cubes)) res = [item[0] + item[1] for item in res] pairs = np.array(list(product(self.weights, other.weights))) weights = np.array([np.nanprod(item) for item in pairs]) nan_mask = np.array([np.isnan(item).all() for item in pairs]) weights[nan_mask] = np.nan result = Domain(res, weights=weights) elif isinstance(other, Option): result = self * Domain(other) else: raise TypeError('Arguments must be numeric, Domains or Options') return result
Example 19
Project: GraphicDesignPatternByPython Author: Relph1119 File: test_interaction.py License: MIT License | 5 votes |
def test_nanfunctions_matrices_general(): # Check that it works and that type and # shape are preserved # 2018-04-29: moved here from core.tests.test_nanfunctions mat = np.matrix(np.eye(3)) for f in (np.nanargmin, np.nanargmax, np.nansum, np.nanprod, np.nanmean, np.nanvar, np.nanstd): res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 1)) res = f(mat) assert_(np.isscalar(res)) for f in np.nancumsum, np.nancumprod: res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3*3))
Example 20
Project: GraphicDesignPatternByPython Author: Relph1119 File: test_nanfunctions.py License: MIT License | 5 votes |
def test_nanprod(self): tgt = np.prod(self.mat) for mat in self.integer_arrays(): assert_equal(np.nanprod(mat), tgt)
Example 21
Project: GraphicDesignPatternByPython Author: Relph1119 File: test_nanfunctions.py License: MIT License | 5 votes |
def test_empty(self): for f, tgt_value in zip([np.nansum, np.nanprod], [0, 1]): mat = np.zeros((0, 3)) tgt = [tgt_value]*3 res = f(mat, axis=0) assert_equal(res, tgt) tgt = [] res = f(mat, axis=1) assert_equal(res, tgt) tgt = tgt_value res = f(mat, axis=None) assert_equal(res, tgt)
Example 22
Project: predictive-maintenance-using-machine-learning Author: awslabs File: test_interaction.py License: Apache License 2.0 | 5 votes |
def test_nanfunctions_matrices_general(): # Check that it works and that type and # shape are preserved # 2018-04-29: moved here from core.tests.test_nanfunctions mat = np.matrix(np.eye(3)) for f in (np.nanargmin, np.nanargmax, np.nansum, np.nanprod, np.nanmean, np.nanvar, np.nanstd): res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 1)) res = f(mat) assert_(np.isscalar(res)) for f in np.nancumsum, np.nancumprod: res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3*3))
Example 23
Project: predictive-maintenance-using-machine-learning Author: awslabs File: test_nanfunctions.py License: Apache License 2.0 | 5 votes |
def test_nanprod(self): tgt = np.prod(self.mat) for mat in self.integer_arrays(): assert_equal(np.nanprod(mat), tgt)
Example 24
Project: predictive-maintenance-using-machine-learning Author: awslabs File: test_nanfunctions.py License: Apache License 2.0 | 5 votes |
def test_empty(self): for f, tgt_value in zip([np.nansum, np.nanprod], [0, 1]): mat = np.zeros((0, 3)) tgt = [tgt_value]*3 res = f(mat, axis=0) assert_equal(res, tgt) tgt = [] res = f(mat, axis=1) assert_equal(res, tgt) tgt = tgt_value res = f(mat, axis=None) assert_equal(res, tgt)
Example 25
Project: predictive-maintenance-using-machine-learning Author: awslabs File: test_panel.py License: Apache License 2.0 | 5 votes |
def test_prod(self): self._check_stat_op('prod', np.prod, skipna_alternative=np.nanprod)
Example 26
Project: predictive-maintenance-using-machine-learning Author: awslabs File: test_nanops.py License: Apache License 2.0 | 5 votes |
def test_nanprod(self): self.check_funs(nanops.nanprod, np.prod, allow_str=False, allow_date=False, allow_tdelta=False, empty_targfunc=np.nanprod)
Example 27
Project: cupy Author: cupy File: sumprod.py License: MIT License | 5 votes |
def nanprod(a, axis=None, dtype=None, out=None, keepdims=False): """Returns the product of an array along given axes treating Not a Numbers (NaNs) as zero. Args: a (cupy.ndarray): Array to take product. axis (int or sequence of ints): Axes along which the product is taken. dtype: Data type specifier. out (cupy.ndarray): Output array. keepdims (bool): If ``True``, the specified axes are remained as axes of length one. Returns: cupy.ndarray: The result array. .. seealso:: :func:`numpy.nanprod` """ if _fusion_thread_local.is_fusing(): if keepdims: raise NotImplementedError( 'cupy.nanprod does not support `keepdims` in fusion yet.') if dtype is None: func = _math._nanprod_auto_dtype else: func = _math._nanprod_keep_dtype return _fusion_thread_local.call_reduction( func, a, axis=axis, dtype=dtype, out=out) # TODO(okuta): check type return _math._nanprod(a, axis, dtype, out, keepdims)
Example 28
Project: pySINDy Author: luckystarufo File: test_interaction.py License: MIT License | 5 votes |
def test_nanfunctions_matrices_general(): # Check that it works and that type and # shape are preserved # 2018-04-29: moved here from core.tests.test_nanfunctions mat = np.matrix(np.eye(3)) for f in (np.nanargmin, np.nanargmax, np.nansum, np.nanprod, np.nanmean, np.nanvar, np.nanstd): res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 1)) res = f(mat) assert_(np.isscalar(res)) for f in np.nancumsum, np.nancumprod: res = f(mat, axis=0) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat, axis=1) assert_(isinstance(res, np.matrix)) assert_(res.shape == (3, 3)) res = f(mat) assert_(isinstance(res, np.matrix)) assert_(res.shape == (1, 3*3))
Example 29
Project: pySINDy Author: luckystarufo File: test_nanfunctions.py License: MIT License | 5 votes |
def test_nanprod(self): tgt = np.prod(self.mat) for mat in self.integer_arrays(): assert_equal(np.nanprod(mat), tgt)
Example 30
Project: pySINDy Author: luckystarufo File: test_nanfunctions.py License: MIT License | 5 votes |
def test_empty(self): for f, tgt_value in zip([np.nansum, np.nanprod], [0, 1]): mat = np.zeros((0, 3)) tgt = [tgt_value]*3 res = f(mat, axis=0) assert_equal(res, tgt) tgt = [] res = f(mat, axis=1) assert_equal(res, tgt) tgt = tgt_value res = f(mat, axis=None) assert_equal(res, tgt)