R/fligner_test.R

Defines functions .fligner_test fligner_test

Documented in fligner_test

#' @include utilities.R
NULL
#'Fligner-Killeen Test
#'
#'
#'@description Provides a pipe-friendly framework to perform the Fligner-Killeen
#'  test, a non-parametric (rank-based) test of the homogeneity of group
#'  variances. It is robust against departures from normality and is a useful
#'  alternative to \code{\link{levene_test}()}. Wrapper around the function
#'  \code{\link[stats]{fligner.test}()}.
#'
#'  See the Datanovia tutorial
#'  \href{https://www.datanovia.com/learn/biostatistics/assumptions/homogeneity-of-variance-in-r}{Homogeneity of Variance Test in R}
#'  for a worked walkthrough.
#'@param data a data.frame containing the variables in the formula.
#'@param formula a formula of the form \code{x ~ group} where \code{x} is a
#'  numeric variable giving the data values and \code{group} is a factor with
#'  one or multiple levels giving the corresponding groups. For example,
#'  \code{formula = TP53 ~ cancer_group}.
#'@param ... other arguments to be passed to the function
#'  \code{\link[stats]{fligner.test}}.
#'
#'@return return a data frame with the following columns: \itemize{ \item
#'  \code{.y.}: the y variable used in the test. \item \code{n}: sample count.
#'  \item \code{statistic}: the Fligner-Killeen test statistic (a chi-squared
#'  statistic) used to compute the p-value. \item \code{df}: the degrees of
#'  freedom. \item \code{p}: p-value. \item \code{method}: the statistical test
#'  used to compare groups.}
#'@seealso \code{\link{levene_test}}
#'   The Datanovia tutorial: \href{https://www.datanovia.com/learn/biostatistics/assumptions/homogeneity-of-variance-in-r}{Homogeneity of Variance Test in R}.
#' @examples
#' # Load data
#' #:::::::::::::::::::::::::::::::::::::::
#' data("ToothGrowth")
#' df <- ToothGrowth
#'
#' # Fligner-Killeen test
#' #:::::::::::::::::::::::::::::::::::::::::
#' df %>% fligner_test(len ~ dose)
#'
#' # Grouped data
#' df %>%
#'   group_by(supp) %>%
#'   fligner_test(len ~ dose)
#'@name fligner_test
#'@export
fligner_test <- function(data, formula, ...){
  args <- c(as.list(environment()), list(...)) %>%
    .add_item(method = "fligner_test")
  if(is_grouped_df(data)){
    results <- data %>% doo(.fligner_test, formula, ...)
  }
  else{
    results <- .fligner_test(data, formula, ...)
  }
  results %>%
    set_attrs(args = args) %>%
    add_class(c("rstatix_test", "fligner_test"))
}

.fligner_test <- function(data, formula, ...)
{
  outcome <- get_formula_left_hand_side(formula)
  group <- get_formula_right_hand_side(formula)
  term <- statistic <- p <- df <- method <- NULL
  # Report the number of observations actually used by the test. fligner.test()
  # drops rows with missing outcome/group values via complete.cases(), so n must
  # be the complete-case count, not nrow(data) which would be inflated when the
  # data contain NAs. Forcing na.action = na.omit makes n match the test's
  # effective sample size; for data without NAs it equals nrow(data).
  n <- nrow(stats::model.frame(formula, data = data, na.action = stats::na.omit))
  stats::fligner.test(formula, data = data, ...) %>%
    as_tidy_stat() %>%
    select(statistic, df, p, method) %>%
    add_column(.y. = outcome, n = n, .before = "statistic")
}

Try the rstatix package in your browser

Any scripts or data that you put into this service are public.

rstatix documentation built on July 24, 2026, 1:06 a.m.