is.row.na(rama)
is.row.na()所属R语言包:rama
Test if a matrix contains missing values
测试如果一个矩阵包含缺失值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function returns a vector of logical variables, one for each row of the matrix. The variable is TRUE if the row does not contain any missing values and FAlSE otherwise.
该函数返回一个逻辑变量,矩阵的每一行向量。变量是TRUE如果该行不包含任何缺失值和FAlSE否则。
用法----------Usage----------
参数----------Arguments----------
参数:data
The data matrix.
数据矩阵。
值----------Value----------
The vector of logical variable
逻辑变量的向量
作者(S)----------Author(s)----------
Raphael Gottardo
参见----------See Also----------
is.na
举例----------Examples----------
### Generate a matrix[#生成一个矩阵]
M<-matrix(rnorm(100),10,10)
M[1,1]<-NA
M[1,2]<- -Inf
M[3,10]<-NA
### Indices of the rows without missing values [行#没有遗漏值指标]
ind<-is.row.na(M)
### Submatrix of M with finite values[#有限值的M子矩阵]
M.finite<-M[ind,]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|