在十分位数分析阶段,我正在进行r。中的逻辑回归 我正在尝试执行以下操作:-
decile_sum_training = summarize(decile_grp,total_cnt= n(),churn_cnt= sum(CHURN),
not_churn_cnt= total_cnt- churn_cnt)
但是当我使用summary(Hmisc)时出现以下错误:-
Error in summarize(decile_grp, total_cnt = n(), churn_cnt = sum(CHURN), :
argument "by" is missing, with no default
请提出一些建议。
答案 0 :(得分:1)
使用常量“ by”:
..., by = rep(1, nrow(decile_grp))