| dayOfYear {timeDate} | R Documentation |
returns the day of the year from a 'timeDate' object.
dayOfYear(x)
x |
an object of class timeDate.
|
returns the day count as integer value starting January, 1st.
With version 2.7 the function has been renamed from getdayOfYear.
## timeCalendat -
tC = timeCalendar()
## The days of the Year:
dayOfYear(tC)
## Use Deprecated Function:
getDayOfYear <- dayOfYear
getDayOfYear(tC)