We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8bcc75 commit c78c932Copy full SHA for c78c932
DESCRIPTION
@@ -254,6 +254,6 @@ Collate:
254
'zxx.r'
255
'zzz.r'
256
VignetteBuilder: knitr
257
-RoxygenNote: 7.1.0
+RoxygenNote: 7.0.2
258
Roxygen: list(markdown = TRUE)
259
Encoding: UTF-8
R/zzz.r
@@ -50,6 +50,12 @@ pathGrob <- NULL
50
ggplot_global$date_origin <- date - unclass(date)
51
time <- Sys.time()
52
ggplot_global$time_origin <- time - unclass(time)
53
+
54
+ # To avoid namespace clash with dplyr.
55
+ # It seems surprising that this hack works
56
+ if (requireNamespace("dplyr", quietly = TRUE)) {
57
+ vars <<- dplyr::vars
58
+ }
59
}
60
61
release_questions <- function() {
0 commit comments