在 NumPy 中测试数组值是否为 NaN
要测试数组是否为 NaN,请在 Python NumPy 中使用 **numpy.isnan()** 方法。在 x 为 NaN 的位置返回 True,否则返回 false。如果 x 是标量,则为标量。该条件在输入上广播。在条件为 True 的位置,out 数组将设置为 ufunc 结果。在其他地方,out 数组将保留其原始值。请注意,如果通过默认的 out=None 创建了一个未初始化的 out 数组,则其中条件为 False 的位置将保持未初始化。
NumPy 使用 IEEE 标准用于算术的二进制浮点数 (IEEE 754)。这意味着“非数字”不等于无穷大。
步骤
首先,导入所需的库 -
import numpy as np
创建一个包含一些 nan 值的数组 -
arr = np.array([1, 2, 10, 50, -np.nan, 0., np.nan])
显示数组 -
print("Array...
", arr)
获取数组的类型 -
print("
Our Array type...
", arr.dtype)
获取数组的维度 -
print("
Our Array Dimensions...
",arr.ndim)
获取数组中元素的数量 -
print("
Number of elements...
", arr.size)
要测试数组是否为 NaN,请在 Python NumPy 中使用 numpy.isnan() 方法 -
print("
Test array for NaN...
",np.isnan(arr))
示例
import numpy as np # Create an array with some nan values arr = np.array([1, 2, 10, 50, -np.nan, 0., np.nan]) # Display the array print("Array...
", arr) # Get the type of the array print("
Our Array type...
", arr.dtype) # Get the dimensions of the Array print("
Our Array Dimensions...
",arr.ndim) # Get the number of elements in the Array print("
Number of elements...
", arr.size) # To test array for NaN, use the numpy.isnan() method in Python Numpy print("
Test array for NaN...
",np.isnan(arr))
输出
Array... [ 1. 2. 10. 50. nan 0. nan] Our Array type... float64 Our Array Dimensions... 1 Number of elements... 7 Test array for NaN... [False False False False True False True]
广告