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
.
Diese Übung ist Teil des Kurses
Analyzing Survey Data in Python
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Perform cross tabulation and assign to variable, cross_table
cross_table = ____
# Conduct chi-square analysis
chi_analysis = ____
print(chi_analysis)