c(rv)
c()所属R语言包:rv
Concatenation of random vectors
随机向量的串联
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Concatentates random vectors.
Concatentates随机向量。
用法----------Usage----------
## S3 method for class 'rv'
c(..., recursive = FALSE)
## S3 method for class 'rvsummary'
c(..., recursive = FALSE)
cc(..., recursive = FALSE)
参数----------Arguments----------
参数:...
objects to be concatenated. Can be a mixture of constants and rv objects.
要连接的对象。混合物,可以是一个常数和随机变量对象。
参数:recursive
logical. If recursive = TRUE, the function recursively descends through lists (and pairlists) combining all their elements into a vector.
逻辑。如果递归= TRUE,该函数递归下降通过列表(和pairlists)的结合成一个向量的元素。
Details
详细信息----------Details----------
NOTE: recursive has not yet been tested.
注:recursive已尚未经过测试。
cc is a function that works for both non-rv and other vectors. To make code compatible for both constant vectors and rv objects, one can use cc instead of c.
cc是一个功能,适用于非RV等向量。为了使代码兼容为两个向量和RV对象的,一个可以使用cc,而不是c。
(作者)----------Author(s)----------
Jouni Kerman
<a href="mailto:jouni@kerman.com">jouni@kerman.com</a>
参考文献----------References----------
Posterior Simulations Using Random Variable Objects. Statistics and Computing 17:3, 235-244.
实例----------Examples----------
x <- rvnorm(2)
y <- rvbern(2, prob=0.5)
z <- c(x, y)
print(z)
z1 <- cc(1, z)
z2 <- c(as.rv(1), z)
z3 <- c(as.rv(1), z)
print(z1)
print(z2)
print(z3)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|