开始使用免费开始使用

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.

本练习是课程的一部分

Introduction to Julia

查看课程

交互式实操练习

通过完成这段示例代码来试试这个练习。

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

println(body_temps)
编辑并运行代码