create_intent_mech: Add intent and mechanism combined fields for injury...

Description Usage Arguments Value Examples

Description

, reference

Usage

1
2
create_intent_mech(data, inj_col, reference = c("both", "intent",
  "mechanism"))

Arguments

data

input data

inj_col

ecode and diagnosis column indices

reference

injury matrix reference with three possible choices: "both"(the default) adding intent and mechanism combined variables "intent" adding intent only "mechanism" adding mechanism only

Value

return the input with additional variables (93 intent_mechanism combinations, five intent variables, or 32 mechanism variable depending on the reference choice

Examples

1
2
3
4
5
6
7
library(tidyverse)
dat <- data.frame(d1 = c("T63023", "X92821", "X99100", "T360x"),
d2 = c("T65823", "Y030x0", "T17200", "V0100x" ))

dat %>% create_intent_mech(inj_col = c(1,2), reference = "both")
dat %>% create_intent_mech(inj_col = c(1,2), reference = "intent")
dat %>% create_intent_mech(inj_col = c(1,2), reference = "mechanism")

injuryepi/injuryicd10cm documentation built on May 4, 2019, 7:42 p.m.