Extracting age and gender from accident narratives
Recall from the video, you want to parse out age and gender from accident narratives. For example, this narrative
19YOM-SHOULDER STRAIN-WAS TACKLED WHILE PLAYING FOOTBALL W/ FRIENDS
describes male of age 19, and this one
TRIPPED OVER CAT AND LANDED ON HARDWOOD FLOOR. LACERATION ELBOW, LEFT. 33 YOF*
a female of age 33.
You are generally looking for a pattern with a number, something to indicate the units, e.g. YO
or YR
for years old, or MO
for months old, and a character that identifies the gender.
In this exercise you'll build up a pattern to pull out the part of the narrative that has the age and gender information. Then, in the next exercise you'll parse out the age and gender into separate variables.
This exercise is part of the course
String Manipulation with stringr in R
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Pattern to match one or two digits
age <- ___
# Test it
str_view(narratives, pattern = age)