Regular penguins
Your colleague needs some help selecting all columns containing measurements in millimeters, mm
, from the penguins
dataset for further analysis. However, someone renamed the columns so that they no longer follow the [observable]_[unit]
convention. Are you up for the challenge?
The DataFrames
package and the penguins
dataset have been loaded for you.
Diese Übung ist Teil des Kurses
Data Manipulation in Julia
Anleitung zur Übung
- Using regex, select only columns containing measurements in millimeters.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Select all columns containing measurements in millimeters
____