R语言
is.na-methods
位于 Matrix
包(package)。 说明
泛型函数的方法 is.na()
、 is.nan()
、 is.finite()
、 is.infinite()
和 anyNA()
,适用于从虚拟类 Matrix
或 sparseVector
继承的对象。
用法
## S4 method for signature 'dsparseMatrix'
is.na(x)
## S4 method for signature 'dsparseMatrix'
is.nan(x)
## S4 method for signature 'dsparseMatrix'
is.finite(x)
## S4 method for signature 'dsparseMatrix'
is.infinite(x)
## S4 method for signature 'dsparseMatrix'
anyNA(x)
## ...
## and for other classes
参数
x |
一个R对象,这里是稀疏或密集矩阵或向量。 |
值
对于 is.*()
, nMatrix
或 nsparseVector
与 x
的尺寸匹配并指定 x
中的位置(某些子集): NA
、 NaN
、 Inf
和 -Inf
.对于anyNA
(),如果x
包含NA
或NaN
,则为TRUE
,否则为FALSE
。
例子
(M <- Matrix(1:6, nrow = 4, ncol = 3,
dimnames = list(letters[1:4], LETTERS[1:3])))
stopifnot(!anyNA(M), !any(is.na(M)))
M[2:3, 2] <- NA
(inM <- is.na(M))
stopifnot(anyNA(M), sum(inM) == 2)
(A <- spMatrix(nrow = 10, ncol = 20,
i = c(1, 3:8), j = c(2, 9, 6:10), x = 7 * (1:7)))
stopifnot(!anyNA(A), !any(is.na(A)))
A[2, 3] <- A[1, 2] <- A[5, 5:9] <- NA
(inA <- is.na(A))
stopifnot(anyNA(A), sum(inA) == 1 + 1 + 5)
也可以看看
相关用法
- R is.null.DN Dimnames dn 是否类似于 NULL?
- R isSymmetric-methods “Matrix”包中函数“isSymmetric”的方法
- R isTriangular-methods 测试矩阵是三角形还是对角矩阵
- R indMatrix-class 索引矩阵
- R image-methods “Matrix”包中的 image() 方法
- R index-class 虚拟类“index” - 矩阵索引的简单类
- R invertPerm 排列向量的实用程序
- R dtrMatrix-class 三角形稠密数值矩阵
- R facmul-methods 乘以矩阵因式分解的因数
- R solve-methods 函数求解矩阵包中的方法
- R updown-methods 更新和降级稀疏 Cholesky 分解
- R bdiag 构建分块对角矩阵
- R printSpMatrix 灵活格式化和打印稀疏矩阵
- R symmetricMatrix-class 包矩阵中对称矩阵的虚拟类
- R all.equal-methods 函数 all.equal() 的矩阵封装方法
- R boolmatmult-methods 布尔算术矩阵乘积:%&% 和方法
- R ltrMatrix-class 三角密集逻辑矩阵
- R Hilbert 生成希尔伯特矩阵
- R nearPD 最近正定矩阵
- R lsyMatrix-class 对称密集逻辑矩阵
- R CHMfactor-class 稀疏 Cholesky 分解
- R symmpart-methods 矩阵的对称部分和偏斜(对称)部分
- R sparseMatrix 从非零项构建一般稀疏矩阵
- R dgCMatrix-class 压缩、稀疏、面向列的数值矩阵
- R Cholesky-methods Cholesky 分解方法
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 is.na(), is.finite() Methods for 'Matrix' Objects。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。