R/stripqq.r

Defines functions stripqq

Documented in stripqq

#' Deprecated strip charts and normal quantile-quantile plots
#'
#' `stripqq()` is deprecated and is no longer exported. It draws strip
#' charts and normal quantile-quantile plots of `x` for each level of the
#' grouping variable `g`.
#'
#'
#' @param formula A symbolic specification of the form \code{x ~ g} can be
#'   given, indicating the observations in the vector \code{x} are grouped
#'   according to the levels of the factor \code{g}. \code{NA}s are allowed in
#'   the data.
#' @param \ldots Optional arguments that are passed to the \code{stripchart} function.
#' @keywords hplot
#' @note This is a legacy teaching helper retained for compatibility with
#'   older course material. New teaching material should prefer current
#'   diagnostic plotting workflows.
stripqq = function(formula, ...) {
  .Deprecated(
    msg = "stripqq() is deprecated and is no longer exported."
  )
  UseMethod("stripqq")
}

Try the s20x package in your browser

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

s20x documentation built on July 1, 2026, 9:06 a.m.