Get startedGet started for free

Indexing DataFrames

DataFrames are powerful tools for analyzing data, but you need to be able to select the information you need from them. Let's practice selecting data here.

The DataFrames df_patients, df_grades, and df_books are available in your environment.

This exercise is part of the course

Introduction to Julia

View Course

Hands-on interactive exercise

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

# Select the body temperature column
body_temps = ____[____, ____]

println(body_temps)
Edit and Run Code