next_day {SparkR} | R Documentation |
Given a date column, returns the first date which is later than the value of the date column that is on the specified day of the week.
next_day(y, x) ## S4 method for signature 'Column,character' next_day(y, x)
For example, next_day('2015-07-27', "Sunday")
returns 2015-08-02 because that is the first
Sunday after 2015-07-27.
Day of the week parameter is case insensitive, and accepts first three or two characters: "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun".
Other datetime_funcs: add_months
,
date_add
, date_format
,
date_sub
, datediff
,
dayofmonth
, dayofyear
,
from_unixtime
,
from_utc_timestamp
, hour
,
last_day
, minute
,
months_between
, month
,
quarter
, second
,
to_date
, to_utc_timestamp
,
unix_timestamp
, weekofyear
,
window
, year
## Not run:
##D next_day(df$d, 'Sun')
##D next_day(df$d, 'Sunday')
## End(Not run)