powered by
safe_median() works stats::median() but warns if some elements of ... are never used.
safe_median()
stats::median()
...
safe_median(x, ...)# S3 method for numeric safe_median(x, ..., na.rm = TRUE)
# S3 method for numeric safe_median(x, ..., na.rm = TRUE)
Numeric vector
Additional arguments passed on to methods.
For numeric method, should missing values be removed?
# NOT RUN { x <- c(1:10, NA) safe_median(x, na.rm = TRUE) median(x, na.rm = TRUE) try(median(x, na.mr = TRUE)) try(safe_median(x, na.mr = TRUE)) try(median(1, 2, 3)) try(safe_median(1, 2, 3)) # }
Run the code above in your browser using DataLab