weekday_code {clock} | R Documentation |
Extract underlying weekday codes
Description
weekday_code()
extracts out the integer code for the weekday.
Usage
weekday_code(x, ..., encoding = "western")
Arguments
x |
A weekday vector. |
... |
These dots are for future extensions and must be empty. |
encoding |
One of:
|
Value
An integer vector of codes.
Examples
# Here we supply a western encoding to `weekday()`
x <- weekday(1:7)
x
# We can extract out the codes using different encodings
weekday_code(x, encoding = "western")
weekday_code(x, encoding = "iso")
[Package clock version 0.7.1 Index]