unlist.rv(rv)
unlist.rv()所属R语言包:rv
Flatten Lists Containing rv Objects
展平列表包含RV对象的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a list structure x, unlist simplifies it to produce a vector which contains all the atomic components (containing rv objects) which occur in x.
给出一个列表结构,x,unlist“简化它产生一个向量,它包含了所有的原子组件(包含RV对象),其中发生在x。
用法----------Usage----------
## S3 method for class 'rv'
unlist(x, recursive = TRUE, use.names = TRUE)
参数----------Arguments----------
参数:x
An R object, typically a list or vector (containing rv objects)
R的对象,通常是一个列表或矢量(含有随机变量对象)
参数:recursive
logical. Should unlisting be applied to list components of x?
逻辑。如果不公开被应用到List组件的x?
参数:use.names
logical. Should names be preserved? (now fixed to TRUE)
逻辑。如果名称被保留吗? (现在固定TRUE)
Details
详细信息----------Details----------
This is the rv-compatible version of the function unlist.
这是RV-兼容的版本的功能unlist。
Since unlist is not a generic function, the whole name unlist.rv must be specified when calling the function when x is an 'rv' object.
由于unlist是不是一个通用的功能,全名unlist.rv必须指定在调用函数时,当x是“RV”的对象。
(作者)----------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----------
unlist
unlist
实例----------Examples----------
x <- list(a=rvnorm(2), b=rvnorm(3))
print(unlist.rv(x))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|