diff --git a/NAMESPACE b/NAMESPACE index ed05740..e8fbabc 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -120,7 +120,9 @@ importFrom(forcats,fct_relevel) importFrom(magrittr,"%>%") importFrom(pointblank,col_vals_not_null) importFrom(purrr,map) +importFrom(purrr,map2) importFrom(purrr,map_dfr) +importFrom(purrr,pluck) importFrom(purrr,set_names) importFrom(rlang,is_na) importFrom(rlang,na_chr) diff --git a/R/generate_collinearity_subset.R b/R/generate_collinearity_subset.R index 8d21b14..34159af 100644 --- a/R/generate_collinearity_subset.R +++ b/R/generate_collinearity_subset.R @@ -18,6 +18,10 @@ #' - `generate_rating_subsets()` #' #' `generate_collinearity_subset()` only creates expertise subsets based on the full dataset where `exclusion_set == "complete"` and `publishable_subset == "All"` and `expertise_subset == "All"`. +#' @import dplyr +#' @importFrom purrr map +#' @importFrom purrr map2 +#' @importFrom purrr pluck #' @examples #' ManyEcoEvo %>% #' prepare_response_variables(estimate_type = "Zr") |>