AMR/tests/testthat/test-skewness.R

14 lines
411 B
R
Raw Normal View History

2018-07-08 22:14:55 +02:00
context("skewness.R")
test_that("skewness works", {
expect_equal(skewness(septic_patients$age),
2018-09-24 23:33:29 +02:00
-0.8958019,
2018-07-08 22:14:55 +02:00
tolerance = 0.00001)
expect_equal(unname(skewness(data.frame(septic_patients$age))),
2018-09-24 23:33:29 +02:00
-0.8958019,
2018-07-08 22:14:55 +02:00
tolerance = 0.00001)
expect_equal(skewness(matrix(septic_patients$age)),
2018-09-24 23:33:29 +02:00
-0.8958019,
2018-07-08 22:14:55 +02:00
tolerance = 0.00001)
})