sparseVector-class
位于 Matrix
包(package)。 说明
稀疏向量类:虚拟母类 "sparseVector"
有五个实际子类 "dsparseVector"
、 "isparseVector"
、 "lsparseVector"
、 "nsparseVector"
和 "zsparseVector"
,其中我们主要实现了 d*
的方法、l*
和n*
。
插槽
length
:-
类
"numeric"
- 稀疏向量的length
。请注意,"numeric"
可以故意大于最大值"integer"
、.Machine$integer.max
。 i
:-
类
"numeric"
- 非零条目的(从 1 开始)索引。不能是NA
并且严格递增排序。请注意,
"integer"
是 “part of”"numeric"
,并且可以(并且通常会)用于非大型稀疏向量。 x
:-
(对于除
"nsparseVector"
之外的所有内容):非零条目。这是类"numeric"
的类"dsparseVector"
,"logical"
的类"lsparseVector"
等。请注意,
"nsparseVector"
没有x
插槽。此外,主要是为了便于方法定义,我们将具有x
槽的所有稀疏向量类的类并集(参见setClassUnion
)定义为类"xsparseVector"
。
方法
- 长度
-
signature(x = "sparseVector")
:简单地提取length
槽。 - 展示
-
signature(object = "sparseVector")
:稀疏向量的show
方法使用非导出的prSpVector
函数将“structural”零打印为"."
,该函数允许进一步定制,例如用" "
(空白)替换"."
。请注意,
options(max.print)
将影响打印大型稀疏向量的条目数量。 - as.vector
-
signature(x = "sparseVector", mode = "character")
将稀疏向量强制为 “regular”,即原子向量。这与as(x, "vector")
相同。 - 作为
-
..:参见下面的
coerce
- 强制
-
signature(from = "sparseVector", to = "sparseMatrix")
, 和 - 强制
-
signature(from = "sparseMatrix", to = "sparseVector")
等:对稀疏矩阵的强制转换(sparseMatrix
)的提供和工作方式与标准类似R,即向量被强制转换为 1 列矩阵。 - 暗淡<-
-
signature(x = "sparseVector", value = "integer")
将稀疏向量强制转换为稀疏矩阵,即继承自sparseMatrix
的适当维度的对象。 - 头
-
signature(x = "sparseVector")
: 与R的(包util
)head
,head(x,n)
(为了 )相当于x[1:n]
,但这里可以更有效,请参阅示例。 - 尾巴
-
signature(x = "sparseVector")
:类似于head
,见上文。 - 托普利茨
-
signature(x = "sparseVector")
:作为toeplitz(x)
,从x
生成 Toeplitz 矩阵,其中n = length(x)
。 - 代表
-
signature(x = "sparseVector")
重复x
,使用相同的参数列表(x, times, length.out, each, ...)
作为 rep() 的默认方法。 - 哪一个
-
signature(x = "nsparseVector")
和 - 哪一个
-
signature(x = "lsparseVector")
返回非零条目的索引(这对于稀疏向量来说很简单)。 - 行动
-
signature(e1 = "sparseVector", e2 = "*")
:定义算术、比较和逻辑运算(参见Ops
)。 - 概括
-
signature(x = "sparseVector")
:定义所有Summary
方法。 - [
-
signature(x = "atomicVector", i = ...)
:您不仅可以使用稀疏向量i
对sparseVectorsx[i]
进行子集化(又名“index into”),而且我们还支持通过逻辑稀疏向量对传统向量x
进行高效子集化。 (即类"nsparseVector"
或"lsparseVector"
的i
)。 - is.na,is.finite,is.infinite
-
(x = "sparseVector")
和 - is.na,is.finite,is.infinite
-
(x = "nsparseVector")
: 返回logical
或者"nsparseVector"
与相同长度x
,表示是否/何处x
是NA
(或者NaN
),有限或无限,完全类似于相应的基数R职能。
c.sparseVector()
是适用于所有的 S3 方法"sparseVector"
s,但自动分派仅发生在第一个参数上,因此它也可以像常规一样有用R函数,请参阅示例。
例子
getClass("sparseVector")
getClass("dsparseVector")
getClass("xsparseVector")# those with an 'x' slot
sx <- c(0,0,3, 3.2, 0,0,0,-3:1,0,0,2,0,0,5,0,0)
(ss <- as(sx, "sparseVector"))
ix <- as.integer(round(sx))
(is <- as(ix, "sparseVector")) ## an "isparseVector" (!)
(ns <- sparseVector(i= c(7, 3, 2), length = 10)) # "nsparseVector"
## rep() works too:
(ri <- rep(is, length.out= 25))
## Using `dim<-` as in base R :
r <- ss
dim(r) <- c(4,5) # becomes a sparse Matrix:
r
## or coercion (as as.matrix() in base R):
as(ss, "Matrix")
stopifnot(all(ss == print(as(ss, "CsparseMatrix"))))
## currently has "non-structural" FALSE -- printing as ":"
(lis <- is & FALSE)
(nn <- is[is == 0]) # all "structural" FALSE
## NA-case
sN <- sx; sN[4] <- NA
(svN <- as(sN, "sparseVector"))
v <- as(c(0,0,3, 3.2, rep(0,9),-3,0,-1, rep(0,20),5,0),
"sparseVector")
v <- rep(rep(v, 50), 5000)
set.seed(1); v[sample(v@i, 1e6)] <- 0
str(v)
system.time(for(i in 1:4) hv <- head(v, 1e6))
## user system elapsed
## 0.033 0.000 0.032
system.time(for(i in 1:4) h2 <- v[1:1e6])
## user system elapsed
## 1.317 0.000 1.319
stopifnot(identical(hv, h2),
identical(is | FALSE, is != 0),
validObject(svN), validObject(lis), as.logical(is.na(svN[4])),
identical(is^2 > 0, is & TRUE),
all(!lis), !any(lis), length(nn@i) == 0, !any(nn), all(!nn),
sum(lis) == 0, !prod(lis), range(lis) == c(0,0))
## create and use the t(.) method:
t(x20 <- sparseVector(c(9,3:1), i=c(1:2,4,7), length=20))
(T20 <- toeplitz(x20))
stopifnot(is(T20, "symmetricMatrix"), is(T20, "sparseMatrix"),
identical(unname(as.matrix(T20)),
toeplitz(as.vector(x20))))
## c() method for "sparseVector" - also available as regular function
(c1 <- c(x20, 0,0,0, -10*x20))
(c2 <- c(ns, is, FALSE))
(c3 <- c(ns, !ns, TRUE, NA, FALSE))
(c4 <- c(ns, rev(ns)))
## here, c() would produce a list {not dispatching to c.sparseVector()}
(c5 <- c.sparseVector(0,0, x20))
## checking (consistency)
.v <- as.vector
.s <- function(v) as(v, "sparseVector")
stopifnot(
all.equal(c1, .s(c(.v(x20), 0,0,0, -10*.v(x20))), tol=0),
all.equal(c2, .s(c(.v(ns), .v(is), FALSE)), tol=0),
all.equal(c3, .s(c(.v(ns), !.v(ns), TRUE, NA, FALSE)), tol=0),
all.equal(c4, .s(c(.v(ns), rev(.v(ns)))), tol=0),
all.equal(c5, .s(c(0,0, .v(x20))), tol=0)
)
也可以看看
sparseVector()
用于稀疏向量的友好构造(as(*, "sparseVector")
除外)。
相关用法
- R sparseVector 从非零条目构造稀疏向量
- R sparseMatrix 从非零项构建一般稀疏矩阵
- R sparseQR-class 稀疏 QR 分解
- R sparse.model.matrix 构造稀疏设计/模型矩阵
- R sparseMatrix-class 虚拟类“sparseMatrix”——稀疏矩阵之母
- R sparseLU-class 稀疏 LU 分解
- R spMatrix 三元组的稀疏矩阵构造函数
- R solve-methods 函数求解矩阵包中的方法
- R symmetricMatrix-class 包矩阵中对称矩阵的虚拟类
- R symmpart-methods 矩阵的对称部分和偏斜(对称)部分
- R dtrMatrix-class 三角形稠密数值矩阵
- R facmul-methods 乘以矩阵因式分解的因数
- R updown-methods 更新和降级稀疏 Cholesky 分解
- R bdiag 构建分块对角矩阵
- R printSpMatrix 灵活格式化和打印稀疏矩阵
- R all.equal-methods 函数 all.equal() 的矩阵封装方法
- R boolmatmult-methods 布尔算术矩阵乘积:%&% 和方法
- R ltrMatrix-class 三角密集逻辑矩阵
- R Hilbert 生成希尔伯特矩阵
- R nearPD 最近正定矩阵
- R lsyMatrix-class 对称密集逻辑矩阵
- R CHMfactor-class 稀疏 Cholesky 分解
- R dgCMatrix-class 压缩、稀疏、面向列的数值矩阵
- R Cholesky-methods Cholesky 分解方法
- R Subassign-methods “[<-”的方法 - 分配给“矩阵”的子集
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Sparse Vector Classes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。