numeric.rv(rv)
numeric.rv()所属R语言包:rv
Numeric Random Vectors
数字随机向量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Creates or coerces rv objects of type "numeric".
创建,或胁迫的RV对象的类型“数字”。
用法----------Usage----------
## S3 method for class 'rv'
is.numeric(x)
## S3 method for class 'rv'
as.numeric(x, ...)
## S3 method for class 'rvfactor'
is.numeric(x)
## S3 method for class 'rvfactor'
as.numeric(x, ...)
参数----------Arguments----------
参数:x
an rv object to be coerced or tested.
RV对象被强制转换或测试。
参数:...
further arguments passed to or from other methods.
进一步的参数传递给其他方法。
Details
详细信息----------Details----------
is.numeric(x) returns TRUE if and only if each component of x is numeric-valued.
is.numeric(x)回报TRUE当且仅当,每个组件x数字值。
as.numeric.rv coerces an rv object into numeric-valued one. In effect, the function as.numeric is applied to all simulations.
as.numeric.rv胁迫RV对象转换成数字值。效果,功能as.numeric被施加到所有的模拟。
Random factors are not numeric (just as non-random factors aren't).
随机因素不是数字(非随机因素)。
(作者)----------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----------
numeric.
numeric。
实例----------Examples----------
x <- as.logical(rvbern(1,0.5)) # Bernoulli rv[伯努利RV]
is.numeric(x) # FALSE[FALSE]
x <- as.numeric(x) # coerce to numeric; all TRUEs become ones, FALSEs zeros[强迫到数字,所有TRUES,成为的人,FALSEs零]
is.numeric(x) # TRUE[TRUE]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|