НачатьНачать бесплатно

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[____, ____])
Редактировать и запускать код