R/NRtest.object.R

Defines functions NRtest.object

Documented in NRtest.object

#' @title
#' S3 Class "NRtest"

#' @details
#' A class of objects returned by high-dimensional hypothesis testing functions in the \pkg{HDNRA} package,
#' designed to encapsulate detailed results from statistical hypothesis tests.
#' These objects are structured similarly to \pkg{htest} objects in the package \pkg{EnvStats} but are tailored
#' to the needs of the \pkg{HDNRA} package.
#'
#' @description
#' The \code{"NRtest"} objects provide a comprehensive summary of hypothesis test outcomes,
#' including test statistics, p-values, parameter estimates, and confidence intervals, if applicable.
#'
#' @return An object of class \code{"NRtest"} containing both required and optional components depending on the specifics of the hypothesis test,
#' shown as follows:
#'
#' @param statistic Numeric scalar containing the value of the test statistic, with a \code{names} attribute indicating the name of the test statistic.
#' @param p.value Numeric scalar containing the p-value for the test.
#' @param method Character string giving the name of the test.
#' @param null.value Character string indicating the null hypothesis.
#' @param alternative Character string indicating the alternative hypothesis.
#' @param parameter Numeric vector containing the estimated approximation parameter(s) associated with the approximation method. This vector has a \code{names} attribute describing its element(s).
#' @param sample.size Numeric vector containing the number of observations in each group used for the hypothesis test.
#' @param sample.dimension Numeric scalar containing the dimension of the dataset used for the hypothesis test.
#' @param estimation.method Character string giving the name of the approximation approach used to approximate the null distribution of the test statistic.
#' @param data.name Character string describing the data set used in the hypothesis test.
#' @param ... Additional optional arguments.
#'
#' @section Required Components:
#' These components must be present in every \code{"NRtest"} object:
#' \describe{
#'   \item{\code{statistic}}{Must e present.}
#'   \item{\code{p.value}}{Must e present.}
#'   \item{\code{null.value}}{Must e present.}
#'   \item{\code{alternative}}{Must e present.}
#'   \item{\code{method}}{Must e present.}
#' }
#'
#' @section Optional Components:
#' These components are included depending on the specifics of the hypothesis test performed:
#' \describe{
#'   \item{\code{parameter}}{May be present.}
#'   \item{\code{sample.size}}{May be present.}
#'   \item{\code{sample.dimension}}{May be present.}
#'   \item{\code{estimation.method}}{May be present.}
#'   \item{\code{data.name}}{May be present.}
#' }
#'

#' @section Methods:
#' The class has the following methods:
#' \describe{
#'   \item{\code{\link{print.NRtest}}}{Printing the contents of the NRtest object in a human-readable form.}
#' }

#' @examples
#' # Example 1: Using Bai and Saranadasa (1996)'s test (two-sample problem)
#' NRtest.obj1 <- NRtest.object(
#'   statistic = c("T[BS]" = 2.208),
#'   p.value = 0.0136,
#'   method = "Bai and Saranadasa (1996)'s test",
#'   data.name = "group1 and group2",
#'   null.value = c("Difference between two mean vectors is o"),
#'   alternative = "Difference between two mean vectors is not 0",
#'   parameter = NULL,
#'   sample.size = c(n1 = 24, n2 = 26),
#'   sample.dimension = 20460,
#'   estimation.method = "Normal approximation"
#' )
#' print(NRtest.obj1)
#'
#' # Example 2: Using Fujikoshi et al. (2004)'s test (GLHT problem)
#' NRtest.obj2 <- NRtest.object(
#'   statistic = c("T[FHW]" = 6.4015),
#'   p.value = 0,
#'   method = "Fujikoshi et al. (2004)'s test",
#'   data.name = "Y",
#'   null.value  = "The general linear hypothesis is true",
#'   alternative = "The general linear hypothesis is not true",
#'   parameter = NULL,
#'   sample.size = c(n1 = 43, n2 = 14, n3 = 21, n4 = 72),
#'   sample.dimension = 2000,
#'   estimation.method = "Normal approximation"
#' )
#' print(NRtest.obj2)
#'
#' @concept object
#'
#' @export
NRtest.object <- function(statistic,
                          p.value,
                          method,
                          null.value,
                          alternative,
                          parameter=NULL,
                          sample.size = NULL,
                          sample.dimension = NULL,
                          estimation.method = NULL,
                          data.name=NULL,...)  {
  structure(
    list(
      statistic = statistic,
      p.value = p.value,
      null.value = null.value,
      alternative = alternative,
      method = method,
      parameter = parameter,
      sample.size = sample.size,
      sample.dimension = sample.dimension,
      estimation.method = estimation.method,
      data.name = data.name,
      ...
    ),
    class = "NRtest"
  )
}

Try the HDNRA package in your browser

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

HDNRA documentation built on Oct. 30, 2024, 9:28 a.m.