1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-08 16:02:02 +02:00

fix rounding MICs on R-devel

This commit is contained in:
2023-07-20 08:24:27 +02:00
parent a2cbbf470e
commit 7dc96794be
5 changed files with 12 additions and 13 deletions

View File

@ -503,8 +503,8 @@ trunc.mic <- function(x, ...) {
#' @method round mic
#' @export
#' @noRd
round.mic <- function(x, digits = 0) {
round(as.double(x), digits = digits)
round.mic <- function(x, digits = 0, ...) {
round(as.double(x), digits = digits, ...)
}
#' @method signif mic
#' @export