檢定群組差異

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 探索員工資料

一起來練習吧!

HR 分析:用 R 探索員工資料

Preparing Video For Download...