R/TwoSampleLocationTest.R

#' @title TwoSampleLocationTest Class
#' 
#' @description Abstract class for two-sample location tests.
#' 
#' @aliases class.twosample.location
#' 
#' @importFrom R6 R6Class


TwoSampleLocationTest <- R6Class(
    classname = "TwoSampleLocationTest",
    inherit = TwoSampleTest,
    cloneable = FALSE,
    private = list(
        .preprocess = function() {
            super$.preprocess()

            private$.data$x <- private$.data$x - private$.null_value
        }
    )
)

Try the LearnNonparam package in your browser

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

LearnNonparam documentation built on June 8, 2025, 1:46 p.m.