Skip to content

Commit a9c13a4

Browse files
committed
apply styler
1 parent 34647f2 commit a9c13a4

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

R/double_ml_pliv.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,8 +542,9 @@ DoubleMLPLIV = R6Class("DoubleMLPLIV",
542542
fold_specific_params = private$fold_specific_params)
543543
}
544544

545-
res = private$score_elements(y, z, d, l_hat$preds, m_hat$preds,
546-
r_hat$preds, g_hat$preds, smpls)
545+
res = private$score_elements(
546+
y, z, d, l_hat$preds, m_hat$preds,
547+
r_hat$preds, g_hat$preds, smpls)
547548
res$preds = list(
548549
"ml_l" = l_hat$preds,
549550
"ml_m" = m_hat$preds,

R/double_ml_plr.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,8 +428,9 @@ DoubleMLPLR = R6Class("DoubleMLPLR",
428428
fold_specific_params = private$fold_specific_params)
429429
}
430430

431-
res = private$score_elements(y, d, l_hat$preds, m_hat$preds, g_hat$preds,
432-
smpls)
431+
res = private$score_elements(
432+
y, d, l_hat$preds, m_hat$preds, g_hat$preds,
433+
smpls)
433434
res$preds = list(
434435
"ml_l" = l_hat$preds,
435436
"ml_m" = m_hat$preds,

0 commit comments

Comments
 (0)