From d352dc0a06c0df9a12e0a487b444a314263e0c63 Mon Sep 17 00:00:00 2001 From: Philipp Bach Date: Mon, 27 Mar 2023 16:37:57 +0200 Subject: [PATCH 1/3] include Sven Klaassen as contributor --- DESCRIPTION | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 842ec9b..ffa4986 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -6,7 +6,8 @@ Authors@R: c( person("Philipp", "Bach", email = "philipp.bach@uni-hamburg.de", role=c("aut", "cre")), person("Victor", "Chernozhukov", role="aut"), person("Malte S.", "Kurz", email = "mkurz-software@gmx.de", role="aut"), - person("Martin", "Spindler", email="martin.spindler@gmx.de", role="aut")) + person("Martin", "Spindler", email="martin.spindler@gmx.de", role="aut"), + person("Klaassen", "Sven", email="sven.klaassen@uni-hamburg.de", role="aut")) Description: Implementation of the double/debiased machine learning framework of Chernozhukov et al. (2018) for partially linear regression models, partially linear instrumental variable regression models, @@ -36,7 +37,7 @@ Imports: mlr3learners (>= 0.3.0), mlr3misc Roxygen: list(markdown = TRUE, r6 = TRUE) -RoxygenNote: 7.2.1 +RoxygenNote: 7.2.3 Suggests: knitr, rmarkdown, From 0b5765cdfc19c3e0d1da50cb947bd46157f07458 Mon Sep 17 00:00:00 2001 From: Philipp Bach Date: Mon, 27 Mar 2023 16:38:23 +0200 Subject: [PATCH 2/3] render docu for `store_model` option for `DoubleML$fit()` --- man/DoubleML.Rd | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/man/DoubleML.Rd b/man/DoubleML.Rd index 19a4462..336f2e4 100644 --- a/man/DoubleML.Rd +++ b/man/DoubleML.Rd @@ -116,6 +116,10 @@ calling \code{fit()}.} Predictions of the nuisance models after calling \code{fit(store_predictions=TRUE)}.} +\item{\code{models}}{(\code{array()}) \cr +The fitted nuisance models after calling +\code{fit(store_models=TRUE)}.} + \item{\code{pval}}{(\code{numeric()}) \cr p-values for the causal parameter(s) after calling \code{fit()}.} @@ -185,7 +189,7 @@ Print DoubleML objects. \subsection{Method \code{fit()}}{ Estimate DoubleML models. \subsection{Usage}{ -\if{html}{\out{
}}\preformatted{DoubleML$fit(store_predictions = FALSE)}\if{html}{\out{
}} +\if{html}{\out{
}}\preformatted{DoubleML$fit(store_predictions = FALSE, store_models = FALSE)}\if{html}{\out{
}} } \subsection{Arguments}{ @@ -194,6 +198,11 @@ Estimate DoubleML models. \item{\code{store_predictions}}{(\code{logical(1)}) \cr Indicates whether the predictions for the nuisance functions should be stored in field \code{predictions}. Default is \code{FALSE}.} + +\item{\code{store_models}}{(\code{logical(1)}) \cr +Indicates whether the fitted models for the nuisance functions should be +stored in field \code{models} if you want to analyze the models or extract +information like variable importance. Default is \code{FALSE}.} } \if{html}{\out{}} } From 97b649653e57a49156d58f0ef803a388a4c9c8c3 Mon Sep 17 00:00:00 2001 From: Philipp Bach Date: Mon, 27 Mar 2023 16:38:30 +0200 Subject: [PATCH 3/3] upd License --- LICENSE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 864bf5c..3e77982 100644 --- a/LICENSE +++ b/LICENSE @@ -1,2 +1,2 @@ -YEAR: 2019-2021 -COPYRIGHT HOLDER: Philipp Bach, Victor Chernozhukov, Malte S. Kurz, Martin Spindler \ No newline at end of file +YEAR: 2019-2023 +COPYRIGHT HOLDER: Philipp Bach, Victor Chernozhukov, Malte S. Kurz, Martin Spindler, Sven Klaassen \ No newline at end of file