mirror of
https://github.com/msberends/AMR.git
synced 2025-12-18 08:20:24 +01:00
styled, unit test fix
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
# (c) 2018-2022 Berends MS, Luz CF et al. #
|
||||
# Developed at the University of Groningen, the Netherlands, in #
|
||||
# collaboration with non-profit organisations Certe Medical #
|
||||
# Diagnostics & Advice, and University Medical Center Groningen. #
|
||||
# Diagnostics & Advice, and University Medical Center Groningen. #
|
||||
# #
|
||||
# This R package is free software; you can freely use and distribute #
|
||||
# it for both personal and commercial purposes under the terms of the #
|
||||
@@ -24,19 +24,24 @@
|
||||
# ==================================================================== #
|
||||
|
||||
expect_equal(kurtosis(example_isolates$age),
|
||||
5.227999,
|
||||
tolerance = 0.00001)
|
||||
5.227999,
|
||||
tolerance = 0.00001
|
||||
)
|
||||
|
||||
expect_equal(unname(kurtosis(data.frame(example_isolates$age))),
|
||||
5.227999,
|
||||
tolerance = 0.00001)
|
||||
5.227999,
|
||||
tolerance = 0.00001
|
||||
)
|
||||
expect_equal(unname(kurtosis(data.frame(example_isolates$age), excess = TRUE)),
|
||||
2.227999,
|
||||
tolerance = 0.00001)
|
||||
2.227999,
|
||||
tolerance = 0.00001
|
||||
)
|
||||
|
||||
expect_equal(kurtosis(matrix(example_isolates$age)),
|
||||
5.227999,
|
||||
tolerance = 0.00001)
|
||||
5.227999,
|
||||
tolerance = 0.00001
|
||||
)
|
||||
expect_equal(kurtosis(matrix(example_isolates$age), excess = TRUE),
|
||||
2.227999,
|
||||
tolerance = 0.00001)
|
||||
2.227999,
|
||||
tolerance = 0.00001
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user