Mental health vs. remote work
You have tested if there is an association between willingness to discuss mental health issues with a direct supervisor, and if an employee's anonymity will be protected when they take advantage of mental health treatment resources provided by their employer.
Now, you will test if there is an association between currently having a mental condition, current_condition
, and an employee working remotely, work_remotely
.
pandas
and scipy.stats
has been uploaded for you as pd
and st
, respectively, and the cleaned survey data as tech_mh
.
This exercise is part of the course
Analyzing Survey Data in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Perform cross tabulation and assign to variable, cross_table
cross_table = ____
# Conduct chi-square analysis
chi_analysis = ____
print(chi_analysis)