1
0

updates to DSL modeling

This commit is contained in:
Matthew Gaughan 2025-11-21 09:06:12 -08:00
parent 495be027e7
commit f37dac73f4

View File

@ -68,10 +68,10 @@ summary(felm_model)
dev_model <- dsl( dev_model <- dsl(
model = "logit", model = "logit",
formula = task_resolution ~ human_EP_prop_adac + human_TSOL_prop_adac + human_RK_prop_adac formula = task_resolution ~ as.factor(isAuthorWMF) * as.factor(source) * human_EP_prop_adac + human_TSOL_prop_adac + human_RK_prop_adac
+ median_PC4_adac + median_PC3_adac + n_comments_before + median_PC4_adac + median_PC3_adac + n_comments_before
+ median_gerrit_reviewers + median_gerrit_loc_delta + median_gerrit_reviewers + median_gerrit_loc_delta
+ week_index + as.factor(source) * as.factor(isAuthorWMF), + week_index,
predicted_var = c("human_EP_prop_adac", "human_TSOL_prop_adac", "human_RK_prop_adac"), predicted_var = c("human_EP_prop_adac", "human_TSOL_prop_adac", "human_RK_prop_adac"),
prediction = c("olmo_EP_prop_adac", "olmo_TSOL_prop_adac", "olmo_RK_prop_adac"), prediction = c("olmo_EP_prop_adac", "olmo_TSOL_prop_adac", "olmo_RK_prop_adac"),
sample_prob = "sampling_prob", sample_prob = "sampling_prob",