Nothing
context("test-mv_imputation")
test_that("Missing value imputation using knn method returns expected output", {
out <- mv_imputation(df=testData$data, method="knn", check_df=FALSE)
attributes(out)$processing_history <- NULL
out <- as.data.frame(out)
expect_equal(out, testData$mv_imputation_knn)
})
test_that("processing_history works with SummarizedExperiment class", {
out <- mv_imputation(df=MTBLS79[1:20, ], method="knn", check_df=FALSE)
expect_equal(processing_history(out)[[1]][[1]], "knn")
})
test_that("Missing value imputation using rf method returns expected output", {
expect_warning(out <- mv_imputation(df=testData$data, method="rf"))
attributes(out)$processing_history <- NULL
out <- as.data.frame(out)
expect_equal(out, testData$mv_imputation_rf, tolerance = 0.15)
})
test_that("Missing value imputation using bpca method returns expected output", {
expect_warning (out <- mv_imputation(df=t(testData$data), method="bpca"))
attributes(out)$processing_history <- NULL
out <- as.data.frame(out)
expect_equal(out, testData$mv_imputation_bpca)
})
test_that("Missing value imputation using sv method returns expected output", {
expect_warning (out <- mv_imputation(df=t(testData$data), method="sv"))
attributes(out)$processing_history <- NULL
out <- as.data.frame(out)
expect_equal(out, testData$mv_imputation_sv)
})
test_that("Missing value imputation using mn method returns expected output", {
expect_warning (out <- mv_imputation(df=t(testData$data), method="mn"))
attributes(out)$processing_history <- NULL
out <- as.data.frame(out)
expect_equal(out, testData$mv_imputation_mn)
})
test_that("Missing value imputation using md method returns expected output", {
expect_warning (out <- mv_imputation(df=t(testData$data), method="md"))
attributes(out)$processing_history <- NULL
out <- as.data.frame(out)
expect_equal(out, testData$mv_imputation_md)
})
test_that("Missing value imputation stops if all values in the row are NA's", {
out <- testData$data
out[3,] <- NA
expect_error(out <- mv_imputation(df=out, method="md"))
})
test_that("Missing value imputation stops if all values in the column are NA's", {
out <- testData$data
out[,3] <- NA
expect_error(out <- mv_imputation(df=out, method="md"))
})
test_that("Missing value imputation stops if wrong method is selected", {
out <- testData$data
expect_error(out <- mv_imputation(df=out, method="Kn"))
})
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.