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)