Nothing
context("test-compare_features")
test_that("null test statistics", {
skip_on_cran()
feature_classifiers_null <- classify(feature_matrix, by_set = FALSE, n_resamples = 5, use_null = TRUE)
feature_vs_null <- compare_features(feature_classifiers_null, by_set = FALSE, hypothesis = "null")
expect_equal(22, nrow(feature_vs_null))
})
test_that("pairwise test statistics", {
skip_on_cran()
feature_classifiers_pairwise <- classify(feature_matrix, by_set = FALSE, n_resamples = 5, use_null = FALSE)
pairwise_features <- compare_features(feature_classifiers_pairwise, by_set = FALSE, hypothesis = "pairwise")
expect_equal(231, nrow(pairwise_features))
})
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.