cs_standardize: Standardized Variables

View source: R/standardize.R

cs_standardizeR Documentation

Standardized Variables

Description

Different time points of SLMPD have different numbers of variables and different names for those variables that are included in both sets of releases. This function reformats non-standard configurations to a 20 variable standard.

Usage

cs_standardize(.data, month, config = 18)

Arguments

.data

A tbl

month

An option string name or abbreviation of a month, or its numeric value. Acceptable inputs include, for example, "January", "january", "Jan", "jan", and 1. If all months in a year-list need to be standardized (this is applicable, as of March 2019, to all years from 2008 through 2012), the month should be given as "all" to standardize them en masse.

config

The non-standard configuration, either 18 or 26

Details

For all months prior to 2013 and approximately half of the months during 2013, SLMPD data are released with 18 variables. For one month, May 2017, the data are released with 26 variables. This function can be used to either edit an entire year list object or to edit only a specified month within it. In general, years 2008 through 2012 should be edited en masse while the month specification can be used to edit the months in 2013 and 2017 that are non-standard.

Examples

# load example year-list object
load(system.file("testdata", "yearList17.rda", package = "compstatr", mustWork = TRUE))

# validate
cs_validate(yearList17, year = 2017)

# standaridze May, which has 26 variables
yearList17 <- cs_standardize(yearList17, month = "May", config = 26)

# validate again to confirm fix
cs_validate(yearList17, year = 2017)


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