Ops.Date(base)
Ops.Date()所属R语言包:base
Operators on the Date Class
Date类的营办商
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Operators for the "Date" class.
"Date"类的运营商。
There is an Ops method and specific methods for + and - for the Date class.
有Ops +和-Date类方法和具体方法。
用法----------Usage----------
date + x
x + date
date - x
date1 lop date2
参数----------Arguments----------
参数:date
date objects
日期对象
参数:date1, date2
date objects or character vectors. (Character vectors are converted by as.Date.)
日期对象或特征向量。 (字符向量转换as.Date。)
参数:x
a numeric vector (in days) or an object of class "difftime", rounded to the nearest whole day.
数字向量(天)或类对象"difftime",四舍五入到最接近的整一天。
参数:lop
One of ==, !=, <, <=, > or >=.
一个==,!=,<,<=,>或>=。
Details
详情----------Details----------
x does not need to be integer if specified as a numeric vector, but see the comments about fractional days in the help for Dates.
x并不需要为整数,如果指定一个数值向量,但看到在Dates的帮助下,有关分数天的意见。
举例----------Examples----------
(z <- Sys.Date())
z + 10
z < c("2009-06-01", "2010-01-01", "2015-01-01")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|