forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-sec-axis.R
179 lines (151 loc) · 4.52 KB
/
test-sec-axis.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
context("sec-axis")
x <- exp(seq(log(0.001), log(1000), length.out = 100))
foo <- data_frame(
x = x,
y = x / (1 + x)
)
test_that("dup_axis() works", {
p <- ggplot(foo, aes(x, y)) +
geom_point() +
scale_x_continuous(
name = "Unit A",
sec.axis = dup_axis()
)
scale <- layer_scales(p)$x
expect_equal(scale$sec_name(), scale$name)
breaks <- scale$break_info()
expect_equal(breaks$minor, breaks$sec.minor)
expect_equal(breaks$major_source, breaks$sec.major_source)
})
test_that("sec_axis() breaks work for log-transformed scales", {
df <- data_frame(
x = c("A", "B", "C"),
y = c(10, 100, 1000)
)
# dup_axis()
p <- ggplot(data = df, aes(x, y)) +
geom_point() +
scale_y_log10(sec.axis = dup_axis())
scale <- layer_scales(p)$y
breaks <- scale$break_info()
expect_equal(breaks$major_source, breaks$sec.major_source)
# sec_axis() with transform
p <- ggplot(data = df, aes(x, y)) +
geom_point() +
scale_y_log10(sec.axis = sec_axis(~. * 100))
scale <- layer_scales(p)$y
breaks <- scale$break_info()
expect_equal(breaks$major_source, breaks$sec.major_source - 2)
# sec_axis() with transform and breaks
custom_breaks <- c(10, 20, 40, 200, 400, 800)
p <- ggplot(data = df, aes(x, y)) +
geom_point() +
scale_y_log10(breaks = custom_breaks, sec.axis = sec_axis(~. * 100))
scale <- layer_scales(p)$y
breaks <- scale$break_info()
expect_equal(breaks$major_source, log(custom_breaks, base = 10))
expect_equal(log_breaks()(df$y) * 100, 10^(breaks$sec.major_source))
})
test_that("custom breaks work", {
custom_breaks <- c(0.01, 0.1, 1, 10, 100)
p <- ggplot(foo, aes(x, y)) +
geom_point() +
scale_x_continuous(
name = "Unit A",
sec.axis = sec_axis(
trans = y ~ .,
breaks = custom_breaks
)
)
scale <- layer_scales(p)$x
breaks <- scale$break_info()
expect_equal(custom_breaks, breaks$sec.major_source)
})
test_that("sec axis works with skewed transform", {
expect_doppelganger(
"sec_axis, skewed transform",
ggplot(foo, aes(x, y)) +
geom_point() +
scale_x_continuous(
name = "Unit A", trans = "log",
breaks = c(0.001, 0.01, 0.1, 1, 10, 100, 1000),
sec.axis = sec_axis(~. * 100,
name = "Unit B",
labels = derive(),
breaks = derive()
)
)
)
})
test_that("sec axis works with tidy eval", {
# decoy, not used
a <- 5
f <- function(df, .x, .y, .z) {
x <- enquo(.x)
y <- enquo(.y)
z <- enquo(.z)
a <- 10 # scaling of secondary axis
g <- ggplot(df, aes(x = !!x, y = !!y)) +
geom_bar(stat = "identity") +
geom_point(aes(y = !!z)) +
scale_y_continuous(sec.axis = sec_axis(~. / a))
g
}
t <- tibble(x = letters, y = seq(10, 260, 10), z = 1:26)
p <- f(t, x, y, z)
scale <- layer_scales(p)$y
breaks <- scale$break_info()
expect_equal(breaks$major_source / 10, breaks$sec.major_source)
})
test_that("sec_axis works with date/time/datetime scales", {
df <- data_frame(
dx = seq(as.POSIXct("2012-02-29 12:00:00",
tz = "UTC",
format = "%Y-%m-%d %H:%M:%S"
),
length.out = 10, by = "4 hour"
),
price = seq(20, 200000, length.out = 10)
)
df$date <- as.Date(df$dx)
dt <- ggplot(df, aes(dx, price)) +
geom_line() +
scale_x_datetime(sec.axis = dup_axis())
scale <- layer_scales(dt)$x
breaks <- scale$break_info()
expect_equal(breaks$major_source, breaks$sec.major_source)
dt <- ggplot(df, aes(date, price)) +
geom_line() +
scale_x_date(sec.axis = dup_axis())
scale <- layer_scales(dt)$x
breaks <- scale$break_info()
expect_equal(breaks$major_source, breaks$sec.major_source)
dt <- ggplot(df, aes(dx, price)) +
geom_line() +
scale_x_datetime(
name = "UTC",
sec.axis = dup_axis(~. + 12 * 60 * 60,
name = "UTC+12"
)
)
scale <- layer_scales(dt)$x
breaks <- scale$break_info()
expect_equal(
as.numeric(breaks$major_source) + 12 * 60 * 60,
as.numeric(breaks$sec.major_source)
)
})
test_that("sec_axis() works for power transformations (monotonicity test doesn't fail)", {
p <- ggplot(foo, aes(x, y)) +
geom_point() +
scale_x_sqrt(sec.axis = dup_axis())
scale <- layer_scales(p)$x
breaks <- scale$break_info()
expect_equal(breaks$major, breaks$sec.major, tolerance = .001)
p <- ggplot(foo, aes(x, y)) +
geom_point() +
scale_x_sqrt(sec.axis = sec_axis(~. * 100))
scale <- layer_scales(p)$x
breaks <- scale$break_info()
expect_equal(breaks$major, breaks$sec.major, tolerance = .001)
})