View source: R/utility_functions.R
is_leap_year | R Documentation |
Given a vector or column of year values (numeric or integer), [is_leap_year]
returns a vector of equal length
of logical indicators, i.e. a vector where corresponding leap years have value TRUE, and FALSE otherwise.
is_leap_year(years)
years |
a vector or column of year values (numeric or integer) |
A logical
vector where TRUE
indicates a leap year.
Joonas Miettinen
## can be used to assign new columns easily, e.g. a dummy indicator column
df <- data.frame(yrs=c(1900,1904,2005,1995))
df$lyd <- as.integer(is_leap_year(df$yrs))
## mostly it is useful as a condition or to indicate which rows have leap years
which(is_leap_year(df$yrs)) # 2
df[is_leap_year(df$yrs),] # 2nd row
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.