Nothing
context("testGraphs.R")
test_that("mcDNorm",{
expect_equal(mcDNorm(0), 0.3989423, tolerance = 0.000001)
expect_equal(mcDNorm(c(1,2,3)), c(0.241970725, 0.053990967, 0.004431848), tolerance = 0.000001)
})
test_that("showT.Test runs error-free",{
x <- rnorm(10)
expect_warning(object = showT.Test(x),regexp = NA)
})
test_that("showProp.Test runs error-free",{
expect_warning(object = showProp.Test(3, 10),regexp = NA)
})
test_that("showChiSq.Test runs error-free",{
expect_warning(object = showChiSq.Test(x = c(100,200,100), y= c(100,200,200)), regexp = "approximation")
})
test_that("showProp.Test runs error-free",{
expect_warning(object = showProp.Test(3, 10), regexp = NA)
})
test_that("showANOVA runs error-free",{
expect_warning(object = showANOVA(yield ~ N + P + K + block + block:P, npk), regexp = NA)
})
test_that("showOLS runs error-free",{
expect_warning(object = showOLS(mpg ~ cyl + qsec, mtcars), regexp = NA)
})
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.