1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-09 01:22:25 +02:00

(v1.6.0.9020) fix for skimr in dplyr 1.0.6

This commit is contained in:
2021-05-06 15:17:11 +02:00
parent 5899678b74
commit 3319fbae58
17 changed files with 29 additions and 39 deletions

View File

@ -348,7 +348,7 @@ get_skimmers.mic <- function(column) {
min = ~min(., na.rm = TRUE),
max = ~max(., na.rm = TRUE),
median = ~stats::median(., na.rm = TRUE),
n_unique = ~pm_n_distinct(., na.rm = TRUE),
n_unique = ~length(unique(stats::na.omit(.))),
hist_log2 = ~skimr::inline_hist(log2(stats::na.omit(.)))
)
}