as_weekday | R Documentation |
as_weekday()
converts to a weekday type. This is normally useful for
converting to a weekday from a sys-time or naive-time. You can use this
function along with the circular arithmetic that weekday implements to
easily get to the "next Monday" or "previous Sunday".
as_weekday(x, ...)
x |
An object to convert to a weekday. Usually a sys-time or naive-time. |
... |
These dots are for future extensions and must be empty. |
A weekday.
x <- as_naive_time(year_month_day(2019, 01, 05))
# This is a Saturday!
as_weekday(x)
# See the examples in `?weekday` for more usage.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.