Separates a column containing coded year and coded month separated by "-" into two columns and removes the input column.
cs_parse_month(.data, var, yearVar, monthVar)
| .data | A tibble or data frame |
|---|---|
| var | the variable containing coded month and coded year |
| yearVar | the name of the column to contain the year data |
| monthVar | the name of the column to contain month data |
Returns a copy of the object with two new columns for the coded year and coded month appended to it.
# load example data testData <- january2018 # parse CodedMonth testData <- cs_parse_month(testData, var = coded_month, yearVar = reportYear, monthVar = reportMonth)