始める無料で始める

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)
コードを編集して実行