EmpezarEmpieza gratis

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.

Este ejercicio forma parte del curso

Introduction to Julia

Ver curso

ejercicio interactivo práctico

Prueba este ejercicio completando este código de ejemplo.

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

println(body_temps)
Editar y ejecutar código