Nothing
#' @title TwoSampleAssociationTest Class
#'
#' @description Abstract class for two-sample association tests.
#'
#' @aliases class.association
#'
#' @importFrom R6 R6Class
TwoSampleAssociationTest <- R6Class(
classname = "TwoSampleAssociationTest",
inherit = TwoSamplePairedTest,
cloneable = FALSE,
private = list(
.calculate_score = function() {
private$.data$x <- get_score(private$.data$x, private$.scoring)
private$.data$y <- get_score(private$.data$y, private$.scoring)
},
.calculate_statistic = function() {
private$.statistic <- association_pmt(
private$.data$x,
private$.data$y,
private$.statistic_func,
if (private$.type == "permu") private$.n_permu else NA_real_,
isTRUE(getOption("LearnNonparam.pmt_progress"))
)
}
)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.