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)