Sorting patients
You are looking at the patient data again, and you have come to realize just how unruly it is. Let's bring some order to this data using the sort() function.
The patient data is available in your environment as df_patients.
이 연습은 강의의 일부입니다
Introduction to Julia
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
# Sort the data by heart rate
df_byheart = ____(____, _____)
# Print the first 5 rows
println(df_byheart[____, ____])