LoslegenKostenlos loslegen

Parsing age and gender into pieces

To finish up, you need to pull out the individual pieces and tidy them into usable variables.

There are a few ways you could get at one piece: you could extract out the piece you need, you could replace everything that isn't the piece you need with "", or you could try to split into the pieces you need. You'll try a few of these in this exercise and you'll see yet another way in the next chapter. For the first option, stringr has a nice convenience function, str_remove(), that works like str_replace() with replacement = "".

One benefit of building up your pattern in pieces is you already have patterns for each part that you can reuse now.

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.

# age_gender, age, gender, unit are pre-defined
ls.str()

# Extract age and make numeric
___
Code bearbeiten und ausführen