is.na-methods(Matrix)
is.na-methods()所属R语言包:Matrix
is.na() Methods for 'Matrix' Objects
is.na()方法为“矩阵”的对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Methods for function is.na() for all Matrices (objects extending the Matrix class):
函数的方法is.na()所有的矩阵(扩展Matrix类的对象):
x = "denseMatrix" returns a "nMatrix" object of same
X =的“denseMatrix”,返回"nMatrix"同一对象
x = "sparseMatrix" ditto.
X =“sparseMatrix”同上。
用法----------Usage----------
## S4 method for signature 'sparseMatrix'
is.na(x)
参数----------Arguments----------
参数:x
sparse or dense matrix.
疏或密矩阵。
参见----------See Also----------
NA, is.na; nMatrix, denseMatrix, sparseMatrix.
NA,is.na;nMatrix,denseMatrix,sparseMatrix。
举例----------Examples----------
M <- Matrix(1:6, nrow=4, ncol=3,
dimnames = list(c("a", "b", "c", "d"), c("A", "B", "C")))
stopifnot(all(!is.na(M)))
M[2:3,2] <- NA
is.na(M)
A <- spMatrix(10,20, i = c(1,3:8),
j = c(2,9,6:10),
x = 7 * (1:7))
stopifnot(all(!is.na(A)))
A[2,3] <- A[1,2] <- A[5, 5:9] <- NA
inA <- is.na(A)
stopifnot(sum(inA) == 1+1+5)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|