index(zoo)
index()所属R语言包:zoo
Extracting/Replacing the Index of Objects
取出/更换对象指数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generic functions for extracting the index of an object and replacing it.
提取对象的索引,并将其替换的通用功能。
用法----------Usage----------
index(x, ...)
index(x) <- value
参数----------Arguments----------
参数:x
an object.
一个对象。
参数:...
further arguments passed to methods.
进一步的参数传递给方法。
参数:value
an ordered vector of the same length as the "index" attribute of x.
一个有序的矢量的长度相同"index"属性x。
Details
详细信息----------Details----------
index is a generic function for extracting the index of objects, currently it has a default method and a method for zoo objects which is the same as the time method for zoo objects. Another pair of generic functions provides replacing the index or time attribute. Methods are available for "zoo" objects only, see examples below.
index是用于提取对象的索引的一个通用的功能,目前它有一个默认的方法和一种方法为zoo对象,这是相同的作为time方法zoo对象。另一个对通用功能提供了更换index或time属性。方法是"zoo"对象,见下面的例子。
The start and end of the index/time can be queried by using the methods of start and end.
可以由使用方法start和end的查询索引/时间的开始和结束的。
参见----------See Also----------
time, zoo
time,zoo
实例----------Examples----------
x.date <- as.Date(paste(2003, 2, c(1, 3, 7, 9, 14), sep = "-"))
x <- zoo(rnorm(5), x.date)
## query index/time of a zoo object[#查询索引/时间一个动物园对象的]
index(x)
time(x)
## change class of index from Date to POSIXct[#改变类指数从日期POSIXct]
## relative to current time zone[#相对于当前时区。]
x
index(x) <- as.POSIXct(format(time(x)),tz="")
x
## replace index/time of a zoo object[#替换一个动物园对象的索引/时间]
index(x) <- 1:5
x
time(x) <- 6:10
x
## query start and end of a zoo object[#查询的开始和结束的动物园对象]
start(x)
end(x)
## query index of a usual matrix[#查询索引的一个通常的矩阵]
xm <- matrix(rnorm(10), ncol = 2)
index(xm)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|