rep(timeDate)
rep()所属R语言包:timeDate
Replicating 'timeDate' Objects
复制“的TIMEDATE对象,
译者:生物统计家园网 机器人LoveR
描述----------Description----------
replicates a 'timeDate' object.
复制的对象“TIMEDATE”。
用法----------Usage----------
## S3 method for class 'timeDate'
rep(x, ...)
参数----------Arguments----------
参数:x
an object of class timeDate.
对象类timeDate。
参数:...
arguments passed to other methods.
参数传递给其他方法。
值----------Value----------
returns an object of class "timeDate".
返回对象类"timeDate"。
实例----------Examples----------
## c -[#C - ]
# Create Character Vectors:[创建字符向量:]
dts = c("1989-09-28", "2001-01-15", "2004-08-30", "1990-02-09")
dts
tms = c( "23:12:55", "10:34:02", "08:30:00", "11:18:23")
tms
## "+/-" - [#“+ / - ” - ]
# Add One Day to a Given timeDate Object:[增加一天给定的TIMEDATE对象:]
GMT = timeDate(dts, zone = "GMT", FinCenter = "GMT")
GMT
ZUR = timeDate(dts, zone = "GMT", FinCenter = "Europe/Zurich")
ZUR
## c - [#C - ]
# Concatenate and Replicate timeDate Objects:[串联复制TIMEDATE对象:]
c(GMT[1:2], ZUR[1:2])
c(ZUR[1:2], GMT[1:2])
## rep - [#代表 - ]
rep(ZUR[2], times = 3)
rep(ZUR[2:3], times = 2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|