xtsAttributes(xts)
xtsAttributes()所属R语言包:xts
Extract and Replace xts Attributes
XTS属性提取和替换
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract and replace non-core xts attributes.
提取和更换非核心xts属性。
用法----------Usage----------
xtsAttributes(x, user=NULL)
xtsAttributes(x) <- value
参数----------Arguments----------
参数:x
an xts object
XTS对象
参数:user
logical; should user-defined attributes be returned? The default of NULL returns all xts attributes.
逻辑,用户定义的属性回来了吗?默认情况下,NULL返回所有的xts属性。
参数:value
a list of new name=value attributes
的新名称=值的列表属性
Details
详细信息----------Details----------
Since xts objects are S3 objects with special attributes, a method is necessary to properly assign and view the user-added attributes.
因为xts对象是具有特殊属性的S3对象,方法是必要的,正确地分配和查看用户的属性。
A call to attributes from the base package will return all attributes, including those specific to the xts class.
呼叫attributesbase包将返回所有属性,包括那些特定xts类的。
值----------Value----------
A named list of user settable attributes.
用户可设置的属性的命名列表。
(作者)----------Author(s)----------
Jeffrey A. Ryan
参见----------See Also----------
attributes
attributes
实例----------Examples----------
x <- xts(matrix(19*6),nc=6),
order.by=as.Date(13000,origin="1970-01-01")+1:9,
a1='my attribute')
xtsAttributes(x)
xtsAttributes(x) <- list(a2=2020)
xtsAttributes(x)
xtsAttributes(x) <- list(a1=NULL)
xtsAttributes(x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|