rvsummary(rv)
rvsummary()所属R语言包:rv
Random Vector Summaries
随机向量摘要
译者:生物统计家园网 机器人LoveR
描述----------Description----------
rvsummary is a class of objects that hold the summary information on each scalar component of a random variable (quantiles, mean, sd, number of simulations etc.)
rvsummary是一类对象,它们保存在每个标量的随机变量的摘要信息(位数,意思是,标清,模拟等数)
用法----------Usage----------
is.rvsummary(x)
as.rvsummary(x, ...)
## S3 method for class 'rv'
as.rvsummary(x, quantiles = (0:200/200), ...)
## S3 method for class 'rvsummary'
as.rvsummary(x, ...)
## S3 method for class 'data.frame'
as.rvsummary(x, quantiles = rvpar("summary.quantiles.numeric"), ...)
## S3 method for class 'rvsummary_rvfactor'
print(x, all.levels=FALSE, ...)
## S3 method for class 'rvsummary'
as.double(x, ...)
参数----------Arguments----------
参数:x
object to be coerced or tested
被强迫的对象或测试
参数:quantiles
quantiles to calculate and store in the object
位数的计算和存储在对象
参数:all.levels
logical; whether to print all levels or not (see below for details)
逻辑是否打印各级与否(详情见下文)
参数:...
further arguments passed to or from other methods.
进一步的参数传递给其他方法。
Details
详细信息----------Details----------
The rvsummary class provides a means to store a concise representation of the marginal posterior distributions of the vector components. By default, the 201 quantiles
rvsummary类提供了一种存储一个简洁表示的边际后验分布的矢量分量。默认情况下,201分位数
值----------Value----------
An object of class rvsummary and of subclass rvsummary_numeric, rvsummary_integer, rvsummary_logical, or rvsummary_rvfactor.
类rvsummary和子类的对象rvsummary_numeric,rvsummary_integer,rvsummary_logical或rvsummary_rvfactor。
(作者)----------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.
参见----------See Also----------
rvfactor
rvfactor
实例----------Examples----------
x <- rvnorm(mean=1:12)
sx <- as.rvsummary(x)
print(sx) # prints the summary of the rvsummary object[打印摘要的rvsummary对象的]
length(sx) # 12[12]
dim(sx) # NULL[NULL]
dim(sx) <- c(3,4) # []
dimnames(sx) <- list(1:3, 1:4)
names(sx) <- 1:12 # []
print(sx) # prints the names and dimnames as well [以及打印的名称和dimnames]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|