当前位置: 首页>>代码示例>>Python>>正文


Python numpy.isna函数代码示例

本文整理汇总了Python中numpy.isna函数的典型用法代码示例。如果您正苦于以下问题:Python isna函数的具体用法?Python isna怎么用?Python isna使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了isna函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_array_maskna_diagonal

def test_array_maskna_diagonal():
    # ndarray.diagonal
    a = np.arange(6, maskna=True)
    a.shape = (2,3)
    a[0,1] = np.NA

    # Should produce a view into a
    res = a.diagonal()
    assert_(res.base is a)
    assert_(res.flags.maskna)
    assert_(not res.flags.ownmaskna)
    assert_equal(res, [0, 4])

    res = a.diagonal(-1)
    assert_equal(res, [3])

    res = a.diagonal(-2)
    assert_equal(res, [])

    # This diagonal has the NA
    res = a.diagonal(1)
    assert_equal(np.isna(res), [1,0])
    assert_equal(res[~np.isna(res)], [5])

    res = a.diagonal(2)
    assert_equal(res, [2])

    res = a.diagonal(3)
    assert_equal(res, [])
开发者ID:beniamino38,项目名称:numpy,代码行数:29,代码来源:test_maskna.py

示例2: test_array_maskna_reshape

def test_array_maskna_reshape():
    # Simple reshape 1D -> 2D
    a = np.arange(6, maskna=True)
    a[1] = np.NA
    a[5] = np.NA

    # Reshape from 1D to C order
    b = a.reshape(2,3)
    assert_(b.base is a)
    assert_equal(b.shape, (2,3))
    assert_(b.flags.maskna)
    assert_(not b.flags.ownmaskna)
    assert_equal(np.isna(b), [[0,1,0],[0,0,1]])

    # Reshape from 1D to F order
    b = a.reshape(2,3,order='F')
    assert_(b.base is a)
    assert_equal(b.shape, (2,3))
    assert_(b.flags.maskna)
    assert_(not b.flags.ownmaskna)
    assert_equal(np.isna(b), [[0,0,0],[1,0,1]])

    # Add a new axis using 'newaxis'
    a = np.array(np.NA, maskna=True)
    assert_equal(np.isna(a[np.newaxis]), [True])
开发者ID:beniamino38,项目名称:numpy,代码行数:25,代码来源:test_maskna.py

示例3: test_array_maskna_conjugate_method

def test_array_maskna_conjugate_method():
    # ndarray.conjugate
    a = np.array([1j, 2+4j, np.NA, 2-1.5j, np.NA], maskna=True)

    b = a.conjugate()
    assert_equal(np.isna(b), [0,0,1,0,1])
    assert_equal(b[~np.isna(b)], [-1j, 2-4j, 2+1.5j])
开发者ID:beniamino38,项目名称:numpy,代码行数:7,代码来源:test_maskna.py

示例4: check_ufunc_max_1D

def check_ufunc_max_1D(max_func):
    a_orig = np.array([0, 3, 2, 10, -1, 5, 7, -2])
    a = a_orig.view(maskna=True)

    # Straightforward reduce with no NAs
    b = max_func(a)
    assert_equal(b, 10)

    # Set the biggest value to NA
    a[3] = np.NA
    b = max_func(a)
    assert_(np.isna(b))

    # Skip the NA
    b = max_func(a, skipna=True)
    assert_(not b.flags.maskna)
    assert_(not np.isna(b))
    assert_equal(b, 7)

    # Set the first value to NA
    a[0] = np.NA
    b = max_func(a, skipna=True)
    assert_(not b.flags.maskna)
    assert_(not np.isna(b))
    assert_equal(b, 7)

    # Set all the values to NA - should raise the same error as
    # for an empty array
    a[...] = np.NA
    assert_raises(ValueError, max_func, a, skipna=True)
开发者ID:beniamino38,项目名称:numpy,代码行数:30,代码来源:test_maskna.py

示例5: test_array_maskna_column_stack

def test_array_maskna_column_stack():
    # np.column_stack
    a = np.array((1,2,3), maskna=True)
    b = np.array((2,3,4), maskna=True)
    b[2] = np.NA
    res = np.column_stack((a,b))
    assert_equal(np.isna(res), [[0,0], [0,0], [0,1]])
    assert_equal(res[~np.isna(res)], [1,2,2,3,3])
开发者ID:beniamino38,项目名称:numpy,代码行数:8,代码来源:test_maskna.py

示例6: test_maskna_ufunc_1D

def test_maskna_ufunc_1D():
    a_orig = np.arange(3)
    a = a_orig.view(maskna=True)
    b_orig = np.array([5,4,3])
    b = b_orig.view(maskna=True)
    c_orig = np.array([0,0,0])
    c = c_orig.view(maskna=True)

    # An NA mask is produced if an operand has one
    res = a + b_orig
    assert_(res.flags.maskna)
    assert_equal(res, [5,5,5])

    res = b_orig + a
    assert_(res.flags.maskna)
    assert_equal(res, [5,5,5])

    # Can still output to a non-NA array if there are no NAs
    np.add(a, b, out=c_orig)
    assert_equal(c_orig, [5,5,5])

    # Should unmask everything if the output has NA support but
    # the inputs don't
    c_orig[...] = 0
    c[...] = np.NA
    np.add(a_orig, b_orig, out=c)
    assert_equal(c, [5,5,5])

    # If the input has NA support but an output parameter doesn't,
    # should work as long as the inputs contain no NAs
    c_orig[...] = 0
    np.add(a, b, out=c_orig)
    assert_equal(c_orig, [5,5,5])

    # An NA is produced if either operand has one
    a[0] = np.NA
    b[1] = np.NA
    res = a + b
    assert_equal(np.isna(res), [1,1,0])
    assert_equal(res[2], 5)

    # If the output contains NA, can't have out= parameter without
    # NA support
    assert_raises(ValueError, np.add, a, b, out=c_orig)

    # Divide in-place with NA
    a_orig = np.array([[3], [12.]])
    a = a_orig.view(maskna=True)
    a[0,0] = np.NA
    a /= 3
    # Shouldn't have touched the masked element
    assert_array_equal(a_orig, [[3], [4.]])
    assert_array_equal(a, [[np.NA], [4.]])
    # double-check assertions
    assert_equal(np.isna(a), [[1], [0]])
    assert_equal(a[~np.isna(a)], [4.])
开发者ID:beniamino38,项目名称:numpy,代码行数:56,代码来源:test_maskna.py

示例7: check_maskna_ufunc_sum_1D

def check_maskna_ufunc_sum_1D(sum_func):
    a = np.arange(3.0, maskna=True)
    b = np.array(0.5)
    c_orig = np.array(0.5)
    c = c_orig.view(maskna=True)

    # Since 'a' has no NA values, this should work
    sum_func(a, out=b)
    assert_equal(b, 3.0)
    b[...] = 7
    sum_func(a, skipna=True, out=b)
    assert_equal(b, 3.0)

    ret = sum_func(a)
    assert_equal(ret, 3.0)
    ret = sum_func(a, skipna=True)
    assert_equal(ret, 3.0)

    # With an NA value, the reduce should throw with the non-NA output param
    a[1] = np.NA
    assert_raises(ValueError, sum_func, a, out=b)

    # With an NA value, the output parameter can still be an NA-array
    c_orig[...] = 0.5
    sum_func(a, out=c)
    assert_equal(c_orig, 0.5)
    assert_(np.isna(c))

    # Should not touch the out= element when assigning NA
    b[...] = 1.0
    d = b.view(maskna=True)
    sum_func(a, out=d)
    assert_(np.isna(d))
    assert_equal(b, 1.0)

    # Without an output parameter, return NA
    ret = sum_func(a)
    assert_(np.isna(ret))

    # With 'skipna=True'
    ret = sum_func(a, skipna=True)
    assert_equal(ret, 2.0)

    # With 'skipna=True', and out= parameter
    b[...] = 0.5
    sum_func(a, skipna=True, out=b)
    assert_equal(b, 2.0)

    # With 'skipna=True', and out= parameter with a mask
    c[...] = 0.5
    c[...] = np.NA
    sum_func(a, skipna=True, out=c)
    assert_(not np.isna(c))
    assert_equal(c, 2.0)
开发者ID:beniamino38,项目名称:numpy,代码行数:54,代码来源:test_maskna.py

示例8: test_array_maskna_squeeze

def test_array_maskna_squeeze():
    # np.squeeze
    a = np.zeros((1,3,1,1,4,2,1), maskna=True)
    a[0,1,0,0,3,0,0] = np.NA

    res = np.squeeze(a)
    assert_equal(res.shape, (3,4,2))
    assert_(np.isna(res[1,3,0]))

    res = np.squeeze(a, axis=(0,2,6))
    assert_equal(res.shape, (3,1,4,2))
    assert_(np.isna(res[1,0,3,0]))
开发者ID:beniamino38,项目名称:numpy,代码行数:12,代码来源:test_maskna.py

示例9: test_array_maskna_setasflat

def test_array_maskna_setasflat():
    # Copy from a C to a F array with some NAs
    a_orig = np.empty((2,3), order='C')
    b_orig = np.empty((3,2), order='F')
    a = a_orig.view(maskna=True)
    b = b_orig.view(maskna=True)
    a[...] = 1
    a[0,1] = np.NA
    a[1,2] = np.NA
    b[...] = 2
    b.setasflat(a)
    assert_equal(np.isna(a), [[0,1,0],[0,0,1]])
    assert_equal(b_orig, [[1,2],[1,1],[1,2]])
    assert_equal(np.isna(b), [[0,1],[0,0],[0,1]])
开发者ID:beniamino38,项目名称:numpy,代码行数:14,代码来源:test_maskna.py

示例10: test_isna

def test_isna():
    # Objects which are not np.NA or ndarray all return False
    assert_equal(np.isna(True), False)
    assert_equal(np.isna("abc"), False)
    assert_equal(np.isna([1,2,3]), False)
    assert_equal(np.isna({3:5}), False)
    # Various NA values return True
    assert_equal(np.isna(np.NA), True)
    assert_equal(np.isna(np.NA()), True)
    assert_equal(np.isna(np.NA(5)), True)
    assert_equal(np.isna(np.NA(dtype='f4')), True)
    assert_equal(np.isna(np.NA(12,dtype='f4')), True)
开发者ID:beniamino38,项目名称:numpy,代码行数:12,代码来源:test_maskna.py

示例11: test_array_maskna_astype

def test_array_maskna_astype():
    dtsrc = [np.dtype(d) for d in '?bhilqpBHILQPefdgFDGSUO']
    #dtsrc.append(np.dtype([('b', np.int, (1,))]))
    dtsrc.append(np.dtype('datetime64[D]'))
    dtsrc.append(np.dtype('timedelta64[s]'))

    dtdst = [np.dtype(d) for d in '?bhilqpBHILQPefdgFDGSUO']
    #dtdst.append(np.dtype([('b', np.int, (1,))]))
    dtdst.append(np.dtype('datetime64[D]'))
    dtdst.append(np.dtype('timedelta64[s]'))

    warn_ctx = WarningManager()
    warn_ctx.__enter__()
    try:
        warnings.simplefilter("ignore", np.ComplexWarning)
        for dt1 in dtsrc:
            a = np.ones(2, dt1, maskna=1)
            a[1] = np.NA
            for dt2 in dtdst:
                msg = 'type %s to %s conversion' % (dt1, dt2)
                b = a.astype(dt2)
                assert_(b.flags.maskna, msg)
                assert_(b.flags.ownmaskna, msg)
                assert_(np.isna(b[1]), msg)
    finally:
        warn_ctx.__exit__()
开发者ID:ejmvar,项目名称:numpy,代码行数:26,代码来源:test_maskna.py

示例12: test_copyto_fromscalar

def test_copyto_fromscalar():
    a = np.arange(6, dtype='f4').reshape(2,3)

    # Simple copy
    np.copyto(a, 1.5)
    assert_equal(a, 1.5)
    np.copyto(a.T, 2.5)
    assert_equal(a, 2.5)

    # Where-masked copy
    mask = np.array([[0,1,0],[0,0,1]], dtype='?')
    np.copyto(a, 3.5, where=mask)
    assert_equal(a, [[2.5,3.5,2.5],[2.5,2.5,3.5]])
    mask = np.array([[0,1],[1,1],[1,0]], dtype='?')
    np.copyto(a.T, 4.5, where=mask)
    assert_equal(a, [[2.5,4.5,4.5],[4.5,4.5,3.5]])

    # Simple copy to NA-masked
    a_orig = a
    a = a_orig.view(maskna=True)
    a[...] = np.NA
    np.copyto(a, 0.5)
    assert_equal(a, 0.5)
    a[...] = np.NA
    np.copyto(a.T, 1.5)
    assert_equal(a, 1.5)

    # Where-masked copy to NA-masked
    a[0,0] = np.NA
    a[1,1] = np.NA
    mask = np.array([[1,0,1],[0,0,1]], dtype='?')
    np.copyto(a, 2.5, where=mask)
    assert_equal(np.isna(a), [[0,0,0],[0,1,0]])
    assert_equal(a_orig, [[2.5,1.5,2.5],[1.5,1.5,2.5]])

    # Simple preservena=True copy
    a[0,0] = np.NA
    np.copyto(a, 3.5, preservena=True)
    assert_equal(np.isna(a), [[1,0,0],[0,1,0]])
    assert_equal(a_orig, [[2.5,3.5,3.5],[3.5,1.5,3.5]])

    # Where-masked preservena=True copy
    mask = np.array([[1,0,1],[0,0,1]], dtype='?')
    np.copyto(a, 4.5, where=mask, preservena=True)
    assert_equal(np.isna(a), [[1,0,0],[0,1,0]])
    assert_equal(a_orig, [[2.5,3.5,4.5],[3.5,1.5,4.5]])
开发者ID:EmployInsight,项目名称:numpy,代码行数:46,代码来源:test_api.py

示例13: test_array_maskna_construction

def test_array_maskna_construction():
    # Construction with NA inputs
    a = np.array([1.0, 2.0, np.NA, 7.0], maskna=True)
    assert_equal(a.dtype, np.dtype('f8'))
    assert_(a.flags.maskna)
    assert_equal(type(a[2]), np.NAType)
    # Without the 'maskna=True', still produces an NA mask if NA is there
    a = np.array([1.0, 2.0, np.NA, 7.0])
    assert_equal(a.dtype, np.dtype('f8'))
    assert_(a.flags.maskna)
    assert_equal(type(a[2]), np.NAType)
    # Without any NAs, does not produce an NA mask
    a = np.array([1.0, 2.0, 4.0, 7.0])
    assert_equal(a.dtype, np.dtype('f8'))
    assert_(not a.flags.maskna)

    # From np.NA as a straight scalar
    a = np.array(np.NA, maskna=True)
    assert_equal(type(a), np.ndarray)
    assert_(np.isna(a))

    # As a special case, converting np.NA to an array produces
    # a zero-dimensional masked array
    a = np.array(np.NA)
    assert_equal(type(a), np.ndarray)
    assert_(np.isna(a))

    # The data type defaults to the same as an empty array if all is NA
    a = np.array([np.NA], maskna=True)
    b = np.array([])
    assert_equal(a.dtype, b.dtype)
    assert_(np.isna(a))

    a = np.zeros((3,))
    assert_(not a.flags.maskna)
    a = np.zeros((3,), maskna=True)
    assert_(a.flags.maskna)
    assert_equal(np.isna(a), False)

    a = np.ones((3,))
    assert_(not a.flags.maskna)
    a = np.ones((3,), maskna=True)
    assert_(a.flags.maskna)
    assert_equal(np.isna(a), False)

    # np.empty returns all NAs if maskna is set to True
    a = np.empty((3,))
    assert_(not a.flags.maskna)
    a = np.empty((3,), maskna=True)
    assert_(a.flags.maskna)
    assert_equal(np.isna(a), True)

    # np.empty_like returns all NAs if maskna is set to True
    tmp = np.arange(3)
    a = np.empty_like(tmp)
    assert_(not a.flags.maskna)
    a = np.empty_like(tmp, maskna=True)
    assert_(a.flags.maskna)
    assert_equal(np.isna(a), True)
开发者ID:beniamino38,项目名称:numpy,代码行数:59,代码来源:test_maskna.py

示例14: test_maskna_take_1D

def test_maskna_take_1D():
    a = np.arange(5, maskna=True)
    b = np.arange(3)
    c = b.view(maskna=True)

    # Take without any NAs
    assert_equal(a.take([0,2,4]), [0,2,4])

    # Take without any NAs, into non-NA output parameter
    a.take([0,2,4], out=b)
    assert_equal(b, [0,2,4])

    # Take without any NAs, into NA output parameter
    b[...] = 1
    c[...] = np.NA
    a.take([0,2,4], out=c)
    assert_equal(c, [0,2,4])

    # Take with some NAs
    a[2] = np.NA
    a[3] = np.NA
    ret = a.take([0,2,4])
    assert_equal([ret[0], ret[2]], [0,4])
    assert_equal(np.isna(ret), [0,1,0])

    # Take with some NAs, into NA output parameter
    b[...] = 1
    c[...] = np.NA
    a.take([0,2,4], out=c)
    assert_equal(b, [0,1,4])
    assert_equal([c[0], c[2]], [0,4])
    assert_equal(np.isna(c), [0,1,0])

    c[...] = 1
    a.take([0,2,4], out=c)
    assert_equal(b, [0,1,4])
    assert_equal([c[0], c[2]], [0,4])
    assert_equal(np.isna(c), [0,1,0])

    # Take with an NA just at the start
    a = np.arange(5, maskna=True)
    a[0] = np.NA
    res = a.take([1,2,3,4])
    assert_equal(res, [1,2,3,4])
开发者ID:beniamino38,项目名称:numpy,代码行数:44,代码来源:test_maskna.py

示例15: test_array_maskna_view_NA_assignment_1D

def test_array_maskna_view_NA_assignment_1D():
    a = np.arange(10)
    a_ref = a.copy()

    # Make sure that assigning NA doesn't affect the original data
    b = a.view(maskna=True)
    b[...] = np.NA
    assert_equal(np.isna(b), True)
    assert_equal(a, a_ref)

    b = a.view(maskna=True)
    b[:] = np.NA
    assert_equal(np.isna(b), True)
    assert_equal(a, a_ref)

    b = a.view(maskna=True)
    b[3:5] = np.NA
    assert_equal(np.isna(b), [0,0,0,1,1,0,0,0,0,0])
    assert_equal(a, a_ref)

    b = a.view(maskna=True)
    b[3:10:3] = np.NA
    assert_equal(np.isna(b), [0,0,0,1,0,0,1,0,0,1])
    assert_equal(a, a_ref)

    b = a.view(maskna=True)
    b[3] = np.NA
    assert_equal(np.isna(b), [0,0,0,1,0,0,0,0,0,0])
    assert_equal(a, a_ref)

    b = a.view(maskna=True)
    mask = np.array([0,1,0,1,1,0,0,0,1,1], dtype='?')
    b[mask] = np.NA
    assert_equal(np.isna(b), mask)
    assert_equal(a, a_ref)
开发者ID:beniamino38,项目名称:numpy,代码行数:35,代码来源:test_maskna.py


注:本文中的numpy.isna函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。