グループ間の差を検定する

HR Analytics: Rで学ぶ従業員データの探索

Ben Teusch

HR Analytics Consultant

2つのグループを比較する

HR Analytics: Rで学ぶ従業員データの探索

可能性を定量化する

HR Analytics: 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 Analytics: 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 Analytics: Rで学ぶ従業員データの探索

数式はどこに?

HR Analytics: Rで学ぶ従業員データの探索

練習しましょう!

HR Analytics: Rで学ぶ従業員データの探索

Preparing Video For Download...