1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#' @keywords internal
"_PACKAGE"
## usethis namespace: start
## usethis namespace: end
NULL
#------------------------------------------------------------------------------#
#' @importFrom utils globalVariables
#' @importFrom purrr map map_df map2 map_dfr map_dbl pluck map_lgl
#' @importFrom tibble tibble is_tibble as_tibble obj_sum
#' @importFrom pillar type_sum
#' @importFrom tidyr gather unnest
#' @importFrom dplyr select %>% bind_cols bind_rows arrange_ arrange full_join
#' @importFrom dplyr mutate last ungroup group_by inner_join summarize do case_when
#' @importFrom vctrs vec_unique_count vec_count vec_slice vec_in vec_ptype_abbr
#' @importFrom rlang !! is_call is_string enquo quos exec is_list abort warn .data %||%
#' @importFrom methods formalArgs
#' @importFrom stats quantile setNames qnorm pnorm dist
#' @importFrom tidyselect vars_select one_of
#' @importFrom furrr future_map_dfr
#' @importFrom tidyr gather
#------------------------------------------------------------------------------#
utils::globalVariables(
c(
"model", "splits", "statistic", "Data", "Row", "id", ".", ".estimate",
".lower", ".upper", "Z0", "Za", "Zl", "Zu", "a", "cubed", "estimate",
"orig", "p0", "squared", "term", "theta_0", "loo", "n", "..index", "models",
paste0("predictor_", gsub(" ", "0", format(1:20))), "linear_pred",
"non_linear_1", "non_linear_2", "non_linear_3", "outcome", "true_prob",
"two_factor_1", "two_factor_2", "rand"
)
)
|