forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-stats-function.r
36 lines (28 loc) · 921 Bytes
/
test-stats-function.r
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
context("stat_function")
test_that("uses scale limits, not data limits", {
dat <- data_frame(x = c(0.1, 1:100))
dat$y <- dexp(dat$x)
base <- ggplot(dat, aes(x, y)) +
stat_function(fun = dexp)
full <- base +
scale_x_continuous(limits = c(0.1, 100)) +
scale_y_continuous()
ret <- layer_data(full)
full_log <- base +
scale_x_log10(limits = c(0.1, 100)) +
scale_y_continuous()
ret_log <- layer_data(full_log)
expect_equal(ret$y[c(1, 101)], ret_log$y[c(1, 101)])
expect_equal(range(ret$x), c(0.1, 100))
expect_equal(range(ret_log$x), c(-1, 2))
expect_false(any(is.na(ret$y)))
expect_false(any(is.na(ret_log$y)))
})
test_that("works with discrete x", {
dat <- data_frame(x = c("a", "b"))
base <- ggplot(dat, aes(x, group = 1)) +
stat_function(fun = as.numeric, geom = "point", n = 2)
ret <- layer_data(base)
expect_equal(ret$x, 1:2)
expect_equal(ret$y, 1:2)
})