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
.
Cet exercice fait partie du cours
Analyzing Survey Data in Python
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Perform cross tabulation and assign to variable, cross_table
cross_table = ____
# Conduct chi-square analysis
chi_analysis = ____
print(chi_analysis)