CommencerCommencer gratuitement

Symbols vs. Strings

Using symbols to refer to columns can sometimes be easier than using strings. There is not much speed difference between them, so it is up to you what you want to use.

In this exercise, you'll be working with the penguins dataset containing data about different species of penguins. Scientists are interested in the island the penguin was observed at as well as some basic measurements of its body as the flipper length or the shape of its beak, represented by the columns culmen depth and culmen length. Body weight and sex is also recorded.

Let's select some columns so you can see what you like using the penguins dataset!

The DataFrames package and the penguins dataset have been loaded for you.

Cet exercice fait partie du cours

Data Manipulation in Julia

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Select the species column using symbol
____[:, ____]
Modifier et exécuter le code