ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Analyzing Survey Data in Python

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Perform cross tabulation and assign to variable, cross_table
cross_table = ____

# Conduct chi-square analysis
chi_analysis = ____

print(chi_analysis)
Editar y ejecutar código