No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
73d0e0a
... +0 ...
61709d6
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
51 | 51 | #' calculate_distance(rnorm(1000), runif(1000)) |
|
52 | 52 | calculate_distance <- function(variable_old, variable_new, bins = 20) { |
|
53 | 53 | if ("factor" %in% class(variable_old)) { |
|
54 | - | #after_cuts <- c(variable_old, variable_new) |
|
55 | - | after_cuts <- as.factor(c(as.character(variable_old),as.character(variable_new))) |
|
54 | + | after_cuts <- c(variable_old, variable_new) |
|
56 | 55 | } else { |
|
57 | 56 | after_cuts <- cut(rank(c(variable_old, variable_new)), bins) |
|
58 | 57 | } |
Files | Coverage |
---|---|
R | 99.11% |
Project Totals (3 files) | 99.11% |
61709d6
#5
73d0e0a