diff --git a/DESCRIPTION b/DESCRIPTION index 7732d215..b1ca9e90 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -42,6 +42,7 @@ Suggests: Rsolnp, nnls, tmle, + tmle3shift, future, future.apply, xgboost diff --git a/R/tmle3_Task.R b/R/tmle3_Task.R index cd690bb8..3e3b28e0 100644 --- a/R/tmle3_Task.R +++ b/R/tmle3_Task.R @@ -64,8 +64,8 @@ tmle3_Task <- R6Class( if ((current_node$scale) && (current_type$type == "continuous") && (is.null(current_type$bounds))) { - min_x <- min(variable_data) - max_x <- max(variable_data) + min_x <- min(variable_data, na.rm=TRUE) + max_x <- max(variable_data, na.rm = TRUE) range <- max_x - min_x lower <- min_x #- 0.1 * range upper <- max_x #+ 0.1 * range diff --git a/docs/reference/tmle_tsm_all.html b/docs/reference/tmle_tsm_all.html deleted file mode 100644 index 766a75e9..00000000 --- a/docs/reference/tmle_tsm_all.html +++ /dev/null @@ -1,168 +0,0 @@ - - - -
- - - - -tmle_TSM_all.Rd
O=(W,A,Y) -W=Covariates -A=Treatment (binary or categorical) -Y=Outcome (binary or bounded continuous)
-tmle_TSM_all()
-
-
-
-