2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
# TITLE #
|
|
|
|
# Antimicrobial Resistance (AMR) Analysis #
|
|
|
|
# #
|
|
|
|
# AUTHORS #
|
|
|
|
# Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
|
|
|
|
# #
|
|
|
|
# LICENCE #
|
|
|
|
# This package is free software; you can redistribute it and/or modify #
|
|
|
|
# it under the terms of the GNU General Public License version 2.0, #
|
|
|
|
# as published by the Free Software Foundation. #
|
|
|
|
# #
|
|
|
|
# This R package is distributed in the hope that it will be useful, #
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
|
|
# GNU General Public License version 2.0 for more details. #
|
|
|
|
# ==================================================================== #
|
|
|
|
|
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)
|
|
|
|
})
|