yrfraction(season)
yrfraction()所属R语言包:season
Fraction of the year
今年的比例
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate the fraction of the year for a date variable (after accounting for leap years) or for month.
计算分数的一年为一个日期变量(闰年占后),或为一个月。
用法----------Usage----------
yrfraction(date, type='daily')
参数----------Arguments----------
参数:date
a date variable if type="daily", or an integer between 1 and 12 if type="monthly".
如果一个日期变量类型=daily,或1到12之间的整数类型=monthly。
参数:type
"daily" for dates, or "monthly" for months.
“每天的日期,或monthly数月。
Details
详细信息----------Details----------
Returns the fraction of the year in the range [0,1).
返回在一年中的比例范围为[0,1)。
值----------Value----------
参数:yrfrac
Fraction of the year.
分数的一年。
(作者)----------Author(s)----------
Adrian Barnett <a href="mailto:a.barnett<at>qut.edu.au">a.barnett<at>qut.edu.au</a>
实例----------Examples----------
# create fractions for the start, middle and end of the year[创建分数的一年的开始,中间和结束]
date = as.Date(c(0,181,364), origin='1991-01-01')
# create fractions based on these dates[根据这些日期创建分数]
yrfraction(date)
yrfraction(1:12, type='monthly')
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|