simulate.vlmc(VLMC)
simulate.vlmc()所属R语言包:VLMC
Simulate a Discrete Time Series from fitted VLMC model
模拟的离散时间序列从装VLMC的模型。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simulate from fitted VLMC model – basis of the VLMC bootstrap
模拟从装VLMC模型 - 基础VLMC引导
用法----------Usage----------
## S3 method for class 'vlmc':
simulate(object, nsim = 1, seed = NULL,
n = object$n, n.start = 64 * object$size["context"],
integer.return = FALSE, keep.RSeed = TRUE, ...)
参数----------Arguments----------
参数:object
typically the result of vlmc(..).
通常vlmc(..)的结果。
参数:nsim
non-negative integer, giving the length of the result.
非负整数,得到的结果的长度。
参数:seed
random seed initializer; see simulate.
随机种子初始值设定项; simulate。
参数:n
non-negative integer, giving the length of the result.
非负整数,得到的结果的长度。
参数:n.start
the number of initial values to be discarded (because of initial effects).
数的初始值,以被丢弃(因为最初的效果)。
参数:integer.return
logical; if TRUE, the result will be an integer vector with values in 0k-1); otherwise the resulting vector consists of letters from the alphabet x$alpha.
逻辑,如果TRUE,其结果将是一个integer向量中的值0k-1),否则由此引起的向量由字母的字母x$alpha。
参数:keep.RSeed
logical indicating if the seed should be stored with the result (as "required" by the generic simulate). Only set this FALSE with good reasons (back compatibility).
逻辑表示如果种子应存储的结果(如需要的通用simulate“)。只有这FALSE有充分的理由(兼容性)。
参数:...
(potentially further arguments for other simulate methods.
(有可能进一步的论据其他simulate方法。
Details
详细信息----------Details----------
The .Random.seed is used and updated as with other random number generation routines such as rbinom.
.Random.seed使用和更新与如rbinom其他的随机数生成例程。
Note that if you want to simulate from a given start sequence x0, you'd use predict.vlmc(x, x0, type= "response") — actually not quite yet.
请注意,如果你想模拟一个给定的起始序列x0,你会用predict.vlmc(x, x0, type= "response") - 其实尚未完全。
值----------Value----------
A vector of length nsim. Either integer or character, depending on the integer.return argument, see above.
的矢量长度nsim。是integer或character,根据integer.return参数,见上面。
(作者)----------Author(s)----------
Martin Maechler
参见----------See Also----------
vlmc and predict.vlmc.
vlmc和predict.vlmc。
实例----------Examples----------
example(vlmc)
simulate.vlmc(vlmc.dt1, 100)
simulate.vlmc(vlmc.dt1c01, 100, int = TRUE)
# n.start = 0: 1st few observations will resemble the data[n.start = 0:1几点意见将类似于数据]
simulate.vlmc(vlmc.dt1c01, 20, n.start=0, int = TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|