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:
4
R/mic.R
4
R/mic.R
@ -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
|
||||
|
Reference in New Issue
Block a user