Skip to content
Snippets Groups Projects
Commit 7857798c authored by Hong Phuc Truong's avatar Hong Phuc Truong
Browse files

Methods Package wird in Description spezifiert damit die is() Funktion beim...

Methods Package wird in Description spezifiert damit die is() Funktion beim Build keinen Fehler aufwirft
parent 3f4cd8f5
No related branches found
No related tags found
No related merge requests found
......@@ -16,11 +16,12 @@ License: BSD_3_clause + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.2
RoxygenNote: 7.2.1
Imports:
dplyr,
extraDistr,
stats
stats,
methods
Suggests:
testthat (>= 3.0.0),
covr,
......
......@@ -13,3 +13,4 @@ export(get_test_sensitivities)
export(predict_future_infections)
import(extraDistr)
import(stats)
importFrom(methods,is)
#'@importFrom methods is
smidm_is_natural_number <- function(x, tol = .Machine$double.eps^0.5) {
if (!((abs(Im(x)) < tol) &&
(abs(Re(x)) > tol) &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment