nonzero-methods(Ringo)
nonzero-methods()所属R语言包:Ringo
Methods for Function nonzero
非零的功能的方法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Auxiliary functions to retrieve the indices of non-zero elements in sparse matrices.
辅助功能来检索稀疏矩阵的非零元素的索引。
值----------Value----------
A two-column matrix. Each row gives the row and column index of a non-zero element in the supplied matrix x.
一个两列的矩阵。每一行给出了所提供的矩阵x行和列非零元素的索引。
方法----------Methods----------
x = "dgCMatrix" returns the indices of non-zero elements in
X =“dgCMatrix”返回非零元素的指数
x = "matrix.csr" returns the indices of non-zero elements in
X =“matrix.csr”返回非零元素的指数
x = "matrix" returns the indices of non-zero elements in matrices of base class matrix; equivalent to
X =“矩阵”返回基类矩阵非零元素的索引matrix;相当于
注意----------Note----------
Originally we used the matrix.csr class from SparseM, but we have switched to the class dgCMatrix from package Matrix, as that package is part of the R distribution bundle now.
本来我们从SparseM使用的matrix.csr类,但我们已经切换到类dgCMatrix包矩阵,该包是现在的R分发包的一部分。
The idea is to have a function similar to which(x != 0, arr.ind=TRUE) if x is a matrix.
这个想法是有一个功能类似which(x != 0, arr.ind=TRUE)如果x是一个矩阵。
参见----------See Also----------
dgCMatrix-class
dgCMatrix-class
举例----------Examples----------
(A <- matrix(c(0,0,0,0,0,1,0,0,0,0,0,0,0,0,-34),
nrow=5, byrow=TRUE))
str(A.dgc <- as(A, "dgCMatrix"))
nonzero(A.dgc)
A2.dgc <- Matrix::cBind(A.dgc, A.dgc)
as.matrix(A2.dgc)
nonzero(A2.dgc)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|