2018-04-18 12:24:54 +02:00
|
|
|
context("freq.R")
|
|
|
|
|
|
|
|
test_that("frequency table works", {
|
2018-08-24 11:08:20 +02:00
|
|
|
library(dplyr)
|
|
|
|
|
2018-07-02 09:34:20 +02:00
|
|
|
expect_equal(nrow(freq(c(1, 1, 2, 2, 3, 3, 4, 4, 5, 5))), 5)
|
|
|
|
expect_equal(nrow(frequency_tbl(c(1, 1, 2, 2, 3, 3, 4, 4, 5, 5))), 5)
|
2018-04-18 12:24:54 +02:00
|
|
|
|
2018-09-24 23:33:29 +02:00
|
|
|
# date column of septic_patients should contain 1140 unique dates
|
|
|
|
expect_equal(nrow(freq(septic_patients$date)), 1140)
|
2018-07-02 09:34:20 +02:00
|
|
|
expect_equal(nrow(freq(septic_patients$date)),
|
2018-04-18 12:24:54 +02:00
|
|
|
length(unique(septic_patients$date)))
|
|
|
|
|
2018-08-24 11:08:20 +02:00
|
|
|
expect_output(print(septic_patients %>% freq(age, nmax = Inf)))
|
2018-08-23 21:27:15 +02:00
|
|
|
expect_output(print(freq(septic_patients$age, nmax = Inf)))
|
|
|
|
expect_output(print(freq(septic_patients$age, nmax = NA)))
|
|
|
|
expect_output(print(freq(septic_patients$age, nmax = NULL)))
|
|
|
|
expect_output(print(freq(septic_patients$age, sort.count = FALSE)))
|
|
|
|
expect_output(print(freq(septic_patients$age, markdown = TRUE)))
|
|
|
|
expect_output(print(freq(septic_patients$age, markdown = TRUE), markdown = FALSE))
|
|
|
|
expect_output(print(freq(septic_patients$age, markdown = TRUE), markdown = TRUE))
|
|
|
|
expect_output(print(freq(septic_patients$age[0])))
|
2018-09-10 15:45:25 +02:00
|
|
|
expect_output(print(freq(septic_patients$age, quote = TRUE)))
|
2018-10-31 12:10:49 +01:00
|
|
|
expect_output(print(freq(septic_patients$age, markdown = TRUE, title = "TITLE")))
|
2018-08-23 21:27:15 +02:00
|
|
|
|
2018-07-09 14:02:58 +02:00
|
|
|
# character
|
2018-08-31 13:36:19 +02:00
|
|
|
expect_output(print(freq(septic_patients$mo)))
|
2018-09-24 23:33:29 +02:00
|
|
|
expect_output(suppressWarnings(print(freq(microorganisms$fullname))))
|
2018-07-09 14:02:58 +02:00
|
|
|
# integer
|
2018-07-01 21:40:37 +02:00
|
|
|
expect_output(print(freq(septic_patients$age)))
|
2018-06-20 14:47:37 +02:00
|
|
|
# date
|
2018-07-01 21:40:37 +02:00
|
|
|
expect_output(print(freq(septic_patients$date)))
|
2018-06-20 14:47:37 +02:00
|
|
|
# factor
|
2018-07-01 21:40:37 +02:00
|
|
|
expect_output(print(freq(septic_patients$hospital_id)))
|
2018-07-09 14:02:58 +02:00
|
|
|
# table
|
2018-09-29 21:54:32 +02:00
|
|
|
expect_output(print(freq(table(septic_patients$gender, septic_patients$age))))
|
2018-08-01 22:37:28 +02:00
|
|
|
# rsi
|
|
|
|
expect_output(print(freq(septic_patients$amcl)))
|
2018-08-23 21:27:15 +02:00
|
|
|
# hms
|
2018-08-24 11:08:20 +02:00
|
|
|
expect_output(suppressWarnings(print(freq(hms::as.hms(sample(c(0:86399), 50))))))
|
|
|
|
# matrix
|
|
|
|
expect_output(print(freq(as.matrix(septic_patients$age))))
|
2018-09-29 21:54:32 +02:00
|
|
|
expect_output(print(freq(as.matrix(septic_patients[, c("age", "gender")]))))
|
2018-08-24 11:08:20 +02:00
|
|
|
# list
|
|
|
|
expect_output(print(freq(list(age = septic_patients$age))))
|
2018-09-29 21:54:32 +02:00
|
|
|
expect_output(print(freq(list(age = septic_patients$age, gender = septic_patients$gender))))
|
2018-10-12 16:35:18 +02:00
|
|
|
# difftime
|
|
|
|
expect_output(suppressWarnings(print(
|
|
|
|
freq(difftime(Sys.time(),
|
|
|
|
Sys.time() - runif(5, min = 0, max = 60 * 60 * 24),
|
|
|
|
units = "hours")))))
|
2018-04-18 12:24:54 +02:00
|
|
|
|
|
|
|
library(dplyr)
|
2018-07-01 21:40:37 +02:00
|
|
|
expect_output(septic_patients %>% select(1:2) %>% freq() %>% print())
|
|
|
|
expect_output(septic_patients %>% select(1:3) %>% freq() %>% print())
|
|
|
|
expect_output(septic_patients %>% select(1:4) %>% freq() %>% print())
|
|
|
|
expect_output(septic_patients %>% select(1:5) %>% freq() %>% print())
|
|
|
|
expect_output(septic_patients %>% select(1:6) %>% freq() %>% print())
|
|
|
|
expect_output(septic_patients %>% select(1:7) %>% freq() %>% print())
|
|
|
|
expect_output(septic_patients %>% select(1:8) %>% freq() %>% print())
|
|
|
|
expect_output(septic_patients %>% select(1:9) %>% freq() %>% print())
|
2018-08-24 14:18:38 +02:00
|
|
|
expect_output(print(freq(septic_patients$age), nmax = 20))
|
2018-06-20 14:47:37 +02:00
|
|
|
|
2018-11-06 16:41:59 +01:00
|
|
|
# grouping variable
|
|
|
|
expect_output(print(septic_patients %>% group_by(gender) %>% freq(hospital_id)))
|
2018-11-08 16:10:03 +01:00
|
|
|
expect_output(print(septic_patients %>% group_by(gender) %>% freq(amox, quote = TRUE)))
|
|
|
|
expect_output(print(septic_patients %>% group_by(gender) %>% freq(amox, markdown = TRUE)))
|
2018-11-06 16:41:59 +01:00
|
|
|
|
2018-06-20 14:47:37 +02:00
|
|
|
# top 5
|
|
|
|
expect_equal(
|
|
|
|
septic_patients %>%
|
2018-08-31 13:36:19 +02:00
|
|
|
freq(mo) %>%
|
2018-06-20 14:47:37 +02:00
|
|
|
top_freq(5) %>%
|
|
|
|
length(),
|
|
|
|
5)
|
2018-09-17 09:42:09 +02:00
|
|
|
# there are more than 5 lowest values
|
2018-06-20 14:47:37 +02:00
|
|
|
expect_gt(
|
|
|
|
septic_patients %>%
|
2018-08-31 13:36:19 +02:00
|
|
|
freq(mo) %>%
|
2018-06-20 14:47:37 +02:00
|
|
|
top_freq(-5) %>%
|
|
|
|
length(),
|
|
|
|
5)
|
|
|
|
# n has length > 1
|
|
|
|
expect_error(
|
|
|
|
septic_patients %>%
|
2018-08-31 13:36:19 +02:00
|
|
|
freq(mo) %>%
|
2018-06-20 14:47:37 +02:00
|
|
|
top_freq(n = c(1, 2))
|
|
|
|
)
|
|
|
|
# input must be freq tbl
|
|
|
|
expect_error(septic_patients %>% top_freq(1))
|
|
|
|
|
2018-07-08 22:14:55 +02:00
|
|
|
# charts from plot and hist, should not raise errors
|
|
|
|
plot(freq(septic_patients, age))
|
|
|
|
hist(freq(septic_patients, age))
|
|
|
|
|
2018-07-09 14:02:58 +02:00
|
|
|
# check vector
|
|
|
|
expect_identical(septic_patients %>%
|
|
|
|
freq(age) %>%
|
|
|
|
as.vector() %>%
|
|
|
|
sort(),
|
|
|
|
septic_patients %>%
|
|
|
|
pull(age) %>%
|
|
|
|
sort())
|
|
|
|
|
2018-07-30 00:57:49 +02:00
|
|
|
# check format
|
|
|
|
expect_identical(septic_patients %>%
|
|
|
|
freq(age) %>%
|
|
|
|
format() %>%
|
|
|
|
apply(2, class) %>%
|
|
|
|
unname(),
|
|
|
|
rep("character", 5))
|
|
|
|
|
|
|
|
# check tibble
|
|
|
|
expect_identical(septic_patients %>%
|
|
|
|
freq(age) %>%
|
|
|
|
as_tibble() %>%
|
|
|
|
class() %>%
|
|
|
|
.[1],
|
|
|
|
"tbl_df")
|
2018-08-24 11:08:20 +02:00
|
|
|
|
|
|
|
expect_error(septic_patients %>% freq(nonexisting))
|
|
|
|
expect_error(septic_patients %>% select(1:10) %>% freq())
|
|
|
|
expect_error(septic_patients %>% freq(peni, oxac, clox, amox, amcl,
|
|
|
|
ampi, pita, czol, cfep, cfur))
|
|
|
|
|
2018-10-01 14:44:40 +02:00
|
|
|
# run diff
|
|
|
|
expect_output(print(
|
|
|
|
diff(freq(septic_patients$amcl),
|
|
|
|
freq(septic_patients$amox))
|
|
|
|
))
|
|
|
|
expect_output(print(
|
|
|
|
diff(freq(septic_patients$age),
|
2018-10-12 16:35:18 +02:00
|
|
|
freq(septic_patients$age)) # "No differences found."
|
2018-10-01 14:44:40 +02:00
|
|
|
))
|
|
|
|
expect_error(print(
|
|
|
|
diff(freq(septic_patients$amcl),
|
|
|
|
"Just a string") # not a freq tbl
|
|
|
|
))
|
|
|
|
|
2018-04-18 12:24:54 +02:00
|
|
|
})
|
|
|
|
|