Get startedGet started for free

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.

This exercise is part of the course

Data Manipulation in Julia

View Course

Exercise instructions

  • Using regex, select only columns containing measurements in millimeters.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Select all columns containing measurements in millimeters
____
Edit and Run Code