LoslegenKostenlos loslegen

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!

Diese Übung ist Teil des Kurses

String Manipulation with stringr in R

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# 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
___
Code bearbeiten und ausführen