cs_parse_month: Separate Coded Month

View source: R/dates.R

cs_parse_monthR Documentation

Separate Coded Month

Description

Separates a column containing coded year and coded month separated by "-" into two columns and removes the input column.

Usage

cs_parse_month(.data, var, yearVar, monthVar)

Arguments

.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

Value

Returns a copy of the object with two new columns for the coded year and coded month appended to it.

Examples

# load example data
testData <- january2018

# parse CodedMonth
testData <- cs_parse_month(testData, var = coded_month, yearVar = reportYear,
    monthVar = reportMonth)


chris-prener/compStatR documentation built on Jan. 25, 2024, 10:03 p.m.