ComenzarEmpieza gratis

Extracting age and gender again

You can now also take another look at your pattern for pulling out age and gender from the injury narratives. In the last chapter you took two steps to extract the pattern and then pull it apart. Take a go at doing it in one step!

Este ejercicio forma parte del curso

String Manipulation with stringr in R

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# narratives has been pre-defined
narratives

# Add capture() to get age, unit and sex
pattern <- optional(DGT) %R% DGT %R%  
  optional(SPC) %R% or("YO", "YR", "MO") %R%
  optional(SPC) %R% or("M", "F")

# Pull out from narratives
___
Editar y ejecutar código