Skip to content

Your client, SleepInc, has shared anonymized sleep data from their hot new sleep tracking app SleepScope. As their data science consultant, your mission is to analyze the lifestyle survey data with Python to discover relationships between exercise, gender, occupation, and sleep quality. See if you can identify patterns leading to insights on sleep quality.

💾 The data: sleep_health_data.csv

SleepInc has provided you with an anonymized dataset of sleep and lifestyle metrics for 374 individuals. This dataset contains average values for each person calculated over the past six months. The data is saved as sleep_health_data.csv.

The dataset includes 13 columns covering sleep duration, quality, disorders, exercise, stress, diet, demographics, and other factors related to sleep health.

ColumnDescription
Person IDAn identifier for each individual.
GenderThe gender of the person (Male/Female).
AgeThe age of the person in years.
OccupationThe occupation or profession of the person.
Sleep Duration (hours)The average number of hours the person sleeps per day.
Quality of Sleep (scale: 1-10)A subjective rating of the quality of sleep, ranging from 1 to 10.
Physical Activity Level (minutes/day)The average number of minutes the person engages in physical activity daily.
Stress Level (scale: 1-10)A subjective rating of the stress level experienced by the person, ranging from 1 to 10.
BMI CategoryThe BMI category of the person (e.g., Underweight, Normal, Overweight).
Blood Pressure (systolic/diastolic)The average blood pressure measurement of the person, indicated as systolic pressure over diastolic pressure.
Heart Rate (bpm)The average resting heart rate of the person in beats per minute.
Daily StepsThe average number of steps the person takes per day.
Sleep DisorderThe presence or absence of a sleep disorder in the person (None, Insomnia, Sleep Apnea).
# Start coding here
# Use as many cells as you need
import pandas as pd

# Load the data
data = pd.read_csv('sleep_health_data.csv')

# Check the columns to identify the correct column names
print(data.columns)

# Question 1: Which occupation has the lowest average sleep duration?
# Assuming the correct column name is 'Sleep Duration'
sleep_duration_by_occ = data.groupby('Occupation')['Sleep Duration'].mean()
lowest_sleep_occ = sleep_duration_by_occ.idxmin()

# Question 2: Which occupation has the lowest average sleep quality?
# Assuming the correct column name is 'Quality of Sleep'
sleep_quality_by_occ = data.groupby('Occupation')['Quality of Sleep'].mean()
lowest_sleep_quality_occ = sleep_quality_by_occ.idxmin()

# Did the occupation with the lowest sleep duration also have the lowest sleep quality?
same_occ = lowest_sleep_occ == lowest_sleep_quality_occ

# Question 3: Ratio of app users in each BMI Category diagnosed with Insomnia
# First, create a column indicating if the person has Insomnia
data['Has_Insomnia'] = data['Sleep Disorder'] == 'Insomnia'

# Calculate the ratio for each BMI Category
insomnia_ratios = data.groupby('BMI Category')['Has_Insomnia'].mean()
bmi_insomnia_ratios = {category: round(ratio, 2) 
                       for category, ratio in insomnia_ratios.items()}

# Display the results
print(f"Occupation with lowest sleep duration: {lowest_sleep_occ}")
print(f"Occupation with lowest sleep quality: {lowest_sleep_quality_occ}")
print(f"Is it the same occupation? {same_occ}")
print("BMI Category Insomnia Ratios:", bmi_insomnia_ratios)