You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*Explore and analyze the students data to see how the length of stay (stay) impacts the average mental health diagnostic scores of the international students present in the study.
1. Return a table with nine rows and five columns.
2. The five columns should be aliased as: stay, count_int, average_phq, average_scs, and average_as, in that order.
3. The average columns should contain the average of the todep (PHQ-9 test), tosc (SCS test), and toas (ASISS test) columns for each length of stay, rounded to two decimal places.
4. The count_int column should be the number of international students for each length of stay.
5. Sort the results by the length of stay in descending order.*/