rvsims(rv)
rvsims()所属R语言包:rv
Create Random Vectors from Simulation Draws
创建随机向量仿真绘制
译者:生物统计家园网 机器人LoveR
描述----------Description----------
rvsims takes a vector, matrix, or list (sims) containing simulations, and returns a random vector (an object of type 'rv')
rvsims一个向量,矩阵或列表(sims),其中包含模拟,并返回一个随机向量(对象类型为“RV”)
用法----------Usage----------
rvsims(sims, n.sims=getnsims(), permute=FALSE)
参数----------Arguments----------
参数:sims
an array of simulations (1, or 2-dimensional) or a list
模拟阵列(1,或2 - 维的)或一个列表
参数:n.sims
number of simulations to save
模拟研究,保存数
参数:permute
logical, indicate if scramble the simulations
逻辑,表示如果争夺的模拟
Details
详细信息----------Details----------
A vector is interpreted to contain simulations for one single random variable.
一个向量被解释为包含模拟为一个单一的随机变量。
If sims is two-dimensional, the columns are supposed to contain simulations for several random variables.
如果sims是二维的,列应该包含几个随机变量的仿真。
If sims is a list, the numeric vectors are recursively combined to a list of random vectors: each component of the list is supposed to be containing one (joint) draw from some distribution—this may be a list.
如果sims是一个列表,该数值向量递归结合到一个列表中的随机向量:列表中的每个组成部分应该是含有一个(联合)拉伸从某些分布,这可能是一个列表。
If permute is TRUE, the simulations are scrambled, i.e. the joint draws are permuted randomly.
如果permuteTRUE,模拟被扰码,即联合绘制置换随机。
(作者)----------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 and y have the same distributions but not the same simulations:[x和y具有相同的分布,但不是相同的模拟:]
setnsims(200)
y <- rvnorm(1)
x <- rvsims(rnorm(getnsims()))
# []
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|