diff --git a/R/ard_aod_wald_test.R b/R/ard_aod_wald_test.R index d3ed94f4d..517a40b38 100644 --- a/R/ard_aod_wald_test.R +++ b/R/ard_aod_wald_test.R @@ -109,6 +109,9 @@ ard_aod_wald_test <- function(x, tidy_fun = broom.helpers::tidy_with_broom_or_pa #' @param wald_test (`data.frame`)\cr wald test object object from `aod::wald.test()` #' #' @return a data frame containing the wald test results. +#' @examples +#' NULL +#' #' @keywords internal .extract_wald_results <- function(wald_test) { df <- wald_test$result$chi2[("df")] diff --git a/R/ard_stats_prop_test.R b/R/ard_stats_prop_test.R index 7e00c744e..7312a511b 100644 --- a/R/ard_stats_prop_test.R +++ b/R/ard_stats_prop_test.R @@ -98,6 +98,9 @@ ard_stats_prop_test <- function(data, by, variables, conf.level = 0.95, ...) { #' @param ... passed to `prop.test(...)` #' #' @return ARD data frame +#' @examples +#' NULL +#' #' @keywords internal .format_proptest_results <- function(by, variable, lst_tidy, ...) { # build ARD ------------------------------------------------------------------ diff --git a/R/deprecated.R b/R/deprecated.R index aa0e62927..8b0e5bc78 100644 --- a/R/deprecated.R +++ b/R/deprecated.R @@ -7,6 +7,10 @@ #' #' @name deprecated #' @keywords internal +#' @examples +#' NULL +#' @returns See each individual function help page. +#' NULL # v0.3.0 ----------------------------------------------------------------------- diff --git a/man/deprecated.Rd b/man/deprecated.Rd index f6641ca52..64a3ecb72 100644 --- a/man/deprecated.Rd +++ b/man/deprecated.Rd @@ -19,9 +19,15 @@ ard_categorical_max(...) ard_emmeans_mean_difference(...) } +\value{ +See each individual function help page. +} \description{ \ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#deprecated}{\figure{lifecycle-deprecated.svg}{options: alt='[Deprecated]'}}}{\strong{[Deprecated]}}\cr Some functions have been deprecated and are no longer being actively supported. } +\examples{ +NULL +} \keyword{internal} diff --git a/man/dot-extract_wald_results.Rd b/man/dot-extract_wald_results.Rd index 24b23eb78..0b718e806 100644 --- a/man/dot-extract_wald_results.Rd +++ b/man/dot-extract_wald_results.Rd @@ -14,5 +14,9 @@ a data frame containing the wald test results. } \description{ Extract data from wald.test object +} +\examples{ +NULL + } \keyword{internal} diff --git a/man/dot-format_proptest_results.Rd b/man/dot-format_proptest_results.Rd index 05c97ef24..b3c601010 100644 --- a/man/dot-format_proptest_results.Rd +++ b/man/dot-format_proptest_results.Rd @@ -22,5 +22,9 @@ ARD data frame } \description{ Convert prop.test to ARD +} +\examples{ +NULL + } \keyword{internal}