比较组间差异

HR 分析:用 R 探索员工数据

Ben Teusch

HR Analytics Consultant

比较两组

HR 分析:用 R 探索员工数据

量化这种可能性

HR 分析:用 R 探索员工数据

t 检验

  • 比较的变量为连续型时使用
t.test(tenure ~ is_manager, data = survey)
    Welch Two Sample t-test

data:  tenure by is_manager
t = -1.2158, df = 834.19, p-value = 0.2244
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
 -0.34197615  0.08037243
sample estimates:
mean in group Non-manager mean in group Manager 
                 7.376555            7.507357
HR 分析:用 R 探索员工数据

卡方检验

  • 比较的变量为分类型时使用
chisq.test(survey$left_company, survey$is_manager)
    Pearson's Chi-squared test with Yates' continuity correction

data:  survey$left_company and survey$is_manager
X-squared = 26.275, df = 1, p-value = 1.97e-06
HR 分析:用 R 探索员工数据

公式在哪里?

HR 分析:用 R 探索员工数据

Ayo berlatih!

HR 分析:用 R 探索员工数据

Preparing Video For Download...