Skip to content

Commit 7b2e702

Browse files
committed
support ggplot2 2.2.0
1 parent 33ff122 commit 7b2e702

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

R/ggMarginal.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ ggMarginal <- function(p, data, x, y, type = c("density", "histogram", "boxplot"
188188
# Add the longest y axis label to the top plot and ensure it's at a y value
189189
# that is on the plot (this is why I build the top plot, to know the y values)
190190
pbTop <- ggplot2::ggplot_build(top)
191-
ylabels <- pb$panel$ranges[[1]]$y.labels
191+
ylabels <- pb$layout$panel_ranges[[1]]$y.labels
192192
ylabel <- ylabels[which.max(nchar(ylabels))]
193193
if (type == "boxplot") {
194194
top <-

R/ggMarginalHelpers.R

+12-12
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ marginPlot <- function(margin, type, xvar, yvar, xparams, yparams, pb, data,
3535
extraParams <- append(xparams, extraParams)
3636
extraParams <- extraParams[!duplicated(names(extraParams))]
3737
if (type == "histogram") {
38-
if (!is.null(pb$panel$x_scales[[1]]$get_limits)) {
39-
extraParams[[originParamName]] <- pb$panel$x_scales[[1]]$get_limits()[1]
38+
if (!is.null(pb$layout$panel_scales$x[[1]]$get_limits)) {
39+
extraParams[[originParamName]] <- pb$layout$panel_scales$x[[1]]$get_limits()[1]
4040
}
4141
}
4242
} else if (margin == "y") {
4343
extraParams <- append(yparams, extraParams)
4444
extraParams <- extraParams[!duplicated(names(extraParams))]
4545
if (type == "histogram") {
46-
if (!is.null(pb$panel$y_scales[[1]]$get_limits)) {
47-
extraParams[[originParamName]] <- pb$panel$y_scales[[1]]$get_limits()[1]
46+
if (!is.null(pb$layout$panel_scales$y[[1]]$get_limits)) {
47+
extraParams[[originParamName]] <- pb$layout$panel_scales$y[[1]]$get_limits()[1]
4848
}
4949
}
5050
}
@@ -172,18 +172,18 @@ addMainTheme <- function(marginal, margin, p) {
172172
getScale <- function(margin, type, pb) {
173173
if (margin == "x") {
174174
if (type == "boxplot") {
175-
scale <- pb$panel$x_scales[[1]]
175+
scale <- pb$layout$panel_scales$x[[1]]
176176
scale$aesthetics <- gsub("^x", "y", scale$aesthetics)
177-
scale$limits <- pb$panel$x_scales[[1]]$get_limits()
177+
scale$limits <- pb$layout$panel_scales$x[[1]]$get_limits()
178178
} else {
179-
scale <- pb$panel$x_scales[[1]]
179+
scale <- pb$layout$panel_scales$x[[1]]
180180
}
181181
} else if (margin == "y") {
182182
if (type == "boxplot") {
183-
scale <- pb$panel$y_scales[[1]]
184-
scale$limits <- pb$panel$y_scales[[1]]$get_limits()
183+
scale <- pb$layout$panel_scales$y[[1]]
184+
scale$limits <- pb$layout$panel_scales$y[[1]]$get_limits()
185185
} else {
186-
scale <- pb$panel$y_scales[[1]]
186+
scale <- pb$layout$panel_scales$y[[1]]
187187
scale$aesthetics <- gsub("^y", "x", scale$aesthetics)
188188
}
189189
}
@@ -195,9 +195,9 @@ getScale <- function(margin, type, pb) {
195195
# marginal plots will use the same range
196196
getLimits <- function(pb, margin) {
197197
if (margin == "x") {
198-
scales <- pb$panel$x_scales[[1]]
198+
scales <- pb$layout$panel_scales$x[[1]]
199199
} else if (margin == "y") {
200-
scales <- pb$panel$y_scales[[1]]
200+
scales <- pb$layout$panel_scales$y[[1]]
201201
} else {
202202
stop("Invalid `margin` parameter (only x and y are supported)", call. = FALSE)
203203
}

0 commit comments

Comments
 (0)