diff --git a/DESCRIPTION b/DESCRIPTION index 968f750fdd..6338c0b43d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: plotly Type: Package Title: Interactive, publication-quality graphs online. -Version: 0.5.2 +Version: 0.5.3 Authors@R: c(person("Chris", "Parmer", role = c("aut", "cre"), email = "chris@plot.ly"), person("Scott", "Chamberlain", role = "aut", diff --git a/NEWS b/NEWS index fbb50b76c1..7ec01fff83 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,20 @@ +0.5.3 -- 21 October 2014. + +Support conversion of geom_bar() with position_dodge(). + +0.5.2 -- 18 October 2014. + +Support aesthetic shape in geom_path() and, hence, geom_line() (conversion). + +0.5.1 -- 15 October 2014. + +Do not show zero lines by default (as in ggplot2 plots). + +0.5.0 -- 15 October 2014. + +From now on, version numbers are meaningful again... +Many changes meanwhile, especially support for more geoms. + 0.4 -- 7 April 2014. Re-write geom to trace conversion code. @@ -22,4 +39,4 @@ For ggplotly: Merge ggplotly code. -0.3.5 \ No newline at end of file +0.3.5 diff --git a/R/trace_generation.R b/R/trace_generation.R index c3b878f2f7..9ac0471cb0 100644 --- a/R/trace_generation.R +++ b/R/trace_generation.R @@ -178,7 +178,7 @@ layer2traces <- function(l, d, misc) { } } name.names <- grep("[.]name$", names(data.params$params), value=TRUE) - if(length(name.names)){ + if (length(name.names)) { for(a.name in name.names){ a <- sub("[.]name$", "", a.name) a.value <- as.character(data.params$params[[a.name]]) @@ -189,6 +189,8 @@ layer2traces <- function(l, d, misc) { } name.list <- data.params$params[name.names] tr$name <- paste(unlist(name.list), collapse=".") + if (length(unique(name.list)) < 2) + tr$name <- as.character(name.list[[1]]) } dpd <- data.params$data @@ -268,6 +270,8 @@ toBasic <- list( g }, bar=function(g) { + if (any(is.na(g$prestats.data$x))) + g$prestats.data$x <- g$prestats.data$x.name g$prestats.data$fill <- g$data$fill[match(g$prestats.data$group, g$data$group)] g$params$xstart <- min(g$data$xmin) g$params$xend <- max(g$data$xmax) diff --git a/run_tests_with_outputs.R b/run_tests_with_outputs.R index 76d22eba22..87202ea239 100644 --- a/run_tests_with_outputs.R +++ b/run_tests_with_outputs.R @@ -14,9 +14,10 @@ save_outputs <- function(gg, name, ignore_ggplot=FALSE) { if (!ignore_ggplot) { ggsave(paste0("test-ggplot-", name, "-ggplot2.png"), plot=gg, w=7, h=5) } - - # save the json - writeLines(getURL(paste0(plotlyUrl, ".json")), paste0("test-ggplot-", name, ".json")) + + # Save the json + writeLines(getURL(paste0(plotlyUrl, ".json")), paste0("test-ggplot-", name, + ".json")) } test_check("plotly") diff --git a/tests/testthat.R b/tests/testthat.R index 78a31264c1..c5273050e9 100644 --- a/tests/testthat.R +++ b/tests/testthat.R @@ -1,5 +1,5 @@ library(testthat) save_outputs <- function(gg, name, ignore_ggplot=FALSE) { - print(paste("running", name)) + print(paste("running", name)) } test_check("plotly") diff --git a/tests/testthat/test-ggplot-abline-ggplot2.png b/tests/testthat/test-ggplot-abline-ggplot2.png deleted file mode 100644 index bb2e2d95e0..0000000000 Binary files a/tests/testthat/test-ggplot-abline-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-abline-plotly.png b/tests/testthat/test-ggplot-abline-plotly.png deleted file mode 100644 index 6eca2b9519..0000000000 Binary files a/tests/testthat/test-ggplot-abline-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-area-ggplot2.png b/tests/testthat/test-ggplot-area-ggplot2.png deleted file mode 100644 index 82204efa7a..0000000000 Binary files a/tests/testthat/test-ggplot-area-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-area-plotly.png b/tests/testthat/test-ggplot-area-plotly.png deleted file mode 100644 index 6101456676..0000000000 Binary files a/tests/testthat/test-ggplot-area-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-category-names-ggplot2.png b/tests/testthat/test-ggplot-bar-category-names-ggplot2.png deleted file mode 100644 index 03b0f3fff4..0000000000 Binary files a/tests/testthat/test-ggplot-bar-category-names-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-category-names-plotly.png b/tests/testthat/test-ggplot-bar-category-names-plotly.png deleted file mode 100644 index e53c4686dc..0000000000 Binary files a/tests/testthat/test-ggplot-bar-category-names-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-dates-ggplot2.png b/tests/testthat/test-ggplot-bar-dates-ggplot2.png deleted file mode 100644 index 593f1b65ee..0000000000 Binary files a/tests/testthat/test-ggplot-bar-dates-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-dates-plotly.png b/tests/testthat/test-ggplot-bar-dates-plotly.png deleted file mode 100644 index eb4730aa37..0000000000 Binary files a/tests/testthat/test-ggplot-bar-dates-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-dodge-ggplot2.png b/tests/testthat/test-ggplot-bar-dodge-ggplot2.png deleted file mode 100644 index 775c4fd047..0000000000 Binary files a/tests/testthat/test-ggplot-bar-dodge-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-dodge-plotly.png b/tests/testthat/test-ggplot-bar-dodge-plotly.png deleted file mode 100644 index 043307648a..0000000000 Binary files a/tests/testthat/test-ggplot-bar-dodge-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-factor-category-ggplot2.png b/tests/testthat/test-ggplot-bar-factor-category-ggplot2.png deleted file mode 100644 index 6445e670e2..0000000000 Binary files a/tests/testthat/test-ggplot-bar-factor-category-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-factor-category-plotly.png b/tests/testthat/test-ggplot-bar-factor-category-plotly.png deleted file mode 100644 index 8188fc7113..0000000000 Binary files a/tests/testthat/test-ggplot-bar-factor-category-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-identity-ggplot2.png b/tests/testthat/test-ggplot-bar-identity-ggplot2.png deleted file mode 100644 index 27db1a8316..0000000000 Binary files a/tests/testthat/test-ggplot-bar-identity-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-identity-plotly.png b/tests/testthat/test-ggplot-bar-identity-plotly.png deleted file mode 100644 index 2ce4313cd1..0000000000 Binary files a/tests/testthat/test-ggplot-bar-identity-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-stack-ggplot2.png b/tests/testthat/test-ggplot-bar-stack-ggplot2.png deleted file mode 100644 index f11199e361..0000000000 Binary files a/tests/testthat/test-ggplot-bar-stack-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar-stack-plotly.png b/tests/testthat/test-ggplot-bar-stack-plotly.png deleted file mode 100644 index cbc0bd56af..0000000000 Binary files a/tests/testthat/test-ggplot-bar-stack-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-bar.R b/tests/testthat/test-ggplot-bar.R index 7c9d1af825..0f5525f6f0 100644 --- a/tests/testthat/test-ggplot-bar.R +++ b/tests/testthat/test-ggplot-bar.R @@ -15,6 +15,11 @@ test_that("position_dodge is translated to barmode=group", { trace.names <- sapply(L[1:2], "[[", "name") expect_true(all(c("Math", "Bio") %in% trace.names)) expect_identical(L$kwargs$layout$barmode, "group") + # Check x values + expect_identical(as.character(L[[1]]$x[1]), "Canada") + expect_identical(as.character(L[[1]]$x[2]), "Germany") + expect_identical(as.character(L[[2]]$x[1]), "Canada") + expect_identical(as.character(L[[2]]$x[2]), "USA") save_outputs(gg.dodge, "bar-dodge") }) diff --git a/tests/testthat/test-ggplot-boxplot-datetime-ggplot2.png b/tests/testthat/test-ggplot-boxplot-datetime-ggplot2.png deleted file mode 100644 index 0d2a647a97..0000000000 Binary files a/tests/testthat/test-ggplot-boxplot-datetime-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-boxplot-datetime-plotly.png b/tests/testthat/test-ggplot-boxplot-datetime-plotly.png deleted file mode 100644 index 2ec81f6095..0000000000 Binary files a/tests/testthat/test-ggplot-boxplot-datetime-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-boxplot-ggplot2.png b/tests/testthat/test-ggplot-boxplot-ggplot2.png deleted file mode 100644 index b0d28666a7..0000000000 Binary files a/tests/testthat/test-ggplot-boxplot-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-boxplot-plotly.png b/tests/testthat/test-ggplot-boxplot-plotly.png deleted file mode 100644 index 7ae06d66d6..0000000000 Binary files a/tests/testthat/test-ggplot-boxplot-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-contour-ggplot2.png b/tests/testthat/test-ggplot-contour-ggplot2.png deleted file mode 100644 index 2172c50b9c..0000000000 Binary files a/tests/testthat/test-ggplot-contour-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-contour-plotly.png b/tests/testthat/test-ggplot-contour-plotly.png deleted file mode 100644 index 986b0ad5cb..0000000000 Binary files a/tests/testthat/test-ggplot-contour-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-date-class-Date-ggplot2.png b/tests/testthat/test-ggplot-date-class-Date-ggplot2.png deleted file mode 100644 index afc5b34ab0..0000000000 Binary files a/tests/testthat/test-ggplot-date-class-Date-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-date-class-Date-plotly.png b/tests/testthat/test-ggplot-date-class-Date-plotly.png deleted file mode 100644 index d8bb8e66fe..0000000000 Binary files a/tests/testthat/test-ggplot-date-class-Date-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-date-irregular-time-series-ggplot2.png b/tests/testthat/test-ggplot-date-irregular-time-series-ggplot2.png deleted file mode 100644 index 932b91c949..0000000000 Binary files a/tests/testthat/test-ggplot-date-irregular-time-series-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-date-irregular-time-series-plotly.png b/tests/testthat/test-ggplot-date-irregular-time-series-plotly.png deleted file mode 100644 index 2736b2ecbc..0000000000 Binary files a/tests/testthat/test-ggplot-date-irregular-time-series-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-date-strings-ggplot2.png b/tests/testthat/test-ggplot-date-strings-ggplot2.png deleted file mode 100644 index 76df6d52d2..0000000000 Binary files a/tests/testthat/test-ggplot-date-strings-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-date-strings-plotly.png b/tests/testthat/test-ggplot-date-strings-plotly.png deleted file mode 100644 index e1546e83d8..0000000000 Binary files a/tests/testthat/test-ggplot-date-strings-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-density-ggplot2.png b/tests/testthat/test-ggplot-density-ggplot2.png deleted file mode 100644 index 6a5d490b6c..0000000000 Binary files a/tests/testthat/test-ggplot-density-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-density-plotly.png b/tests/testthat/test-ggplot-density-plotly.png deleted file mode 100644 index e55e35a796..0000000000 Binary files a/tests/testthat/test-ggplot-density-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-density2d-ggplot2.png b/tests/testthat/test-ggplot-density2d-ggplot2.png deleted file mode 100644 index 2e240f1d44..0000000000 Binary files a/tests/testthat/test-ggplot-density2d-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-density2d-plotly.png b/tests/testthat/test-ggplot-density2d-plotly.png deleted file mode 100644 index 4a23611f9d..0000000000 Binary files a/tests/testthat/test-ggplot-density2d-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-errorbar-ggplot2.png b/tests/testthat/test-ggplot-errorbar-ggplot2.png deleted file mode 100644 index 384e1cce57..0000000000 Binary files a/tests/testthat/test-ggplot-errorbar-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-errorbar-horizontal-ggplot2.png b/tests/testthat/test-ggplot-errorbar-horizontal-ggplot2.png deleted file mode 100644 index d07b6cf4b6..0000000000 Binary files a/tests/testthat/test-ggplot-errorbar-horizontal-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-errorbar-horizontal-plotly.png b/tests/testthat/test-ggplot-errorbar-horizontal-plotly.png deleted file mode 100644 index 3626407637..0000000000 Binary files a/tests/testthat/test-ggplot-errorbar-horizontal-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-errorbar-plotly.png b/tests/testthat/test-ggplot-errorbar-plotly.png deleted file mode 100644 index fd6c1550a5..0000000000 Binary files a/tests/testthat/test-ggplot-errorbar-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-heatmap-ggplot2.png b/tests/testthat/test-ggplot-heatmap-ggplot2.png deleted file mode 100644 index f5c1cb3773..0000000000 Binary files a/tests/testthat/test-ggplot-heatmap-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-heatmap-plotly.png b/tests/testthat/test-ggplot-heatmap-plotly.png deleted file mode 100644 index 2871acff9f..0000000000 Binary files a/tests/testthat/test-ggplot-heatmap-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-histogram-barmodestack-ggplot2.png b/tests/testthat/test-ggplot-histogram-barmodestack-ggplot2.png deleted file mode 100644 index 73a5f3b0ba..0000000000 Binary files a/tests/testthat/test-ggplot-histogram-barmodestack-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-histogram-barmodestack-plotly.png b/tests/testthat/test-ggplot-histogram-barmodestack-plotly.png deleted file mode 100644 index 258a26f561..0000000000 Binary files a/tests/testthat/test-ggplot-histogram-barmodestack-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-histogram-binwidth-ggplot2.png b/tests/testthat/test-ggplot-histogram-binwidth-ggplot2.png deleted file mode 100644 index 7213eac1dc..0000000000 Binary files a/tests/testthat/test-ggplot-histogram-binwidth-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-histogram-binwidth-plotly.png b/tests/testthat/test-ggplot-histogram-binwidth-plotly.png deleted file mode 100644 index f9743116da..0000000000 Binary files a/tests/testthat/test-ggplot-histogram-binwidth-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-histogram-dates-ggplot2.png b/tests/testthat/test-ggplot-histogram-dates-ggplot2.png deleted file mode 100644 index 917a2c01e5..0000000000 Binary files a/tests/testthat/test-ggplot-histogram-dates-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-histogram-dates-plotly.png b/tests/testthat/test-ggplot-histogram-dates-plotly.png deleted file mode 100644 index 7fd26889af..0000000000 Binary files a/tests/testthat/test-ggplot-histogram-dates-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-hline-ggplot2.png b/tests/testthat/test-ggplot-hline-ggplot2.png deleted file mode 100644 index 0c9ec075e9..0000000000 Binary files a/tests/testthat/test-ggplot-hline-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-hline-plotly.png b/tests/testthat/test-ggplot-hline-plotly.png deleted file mode 100644 index ae3a02bdc6..0000000000 Binary files a/tests/testthat/test-ggplot-hline-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-labels-angles-ggplot2.png b/tests/testthat/test-ggplot-labels-angles-ggplot2.png deleted file mode 100644 index 6723719247..0000000000 Binary files a/tests/testthat/test-ggplot-labels-angles-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-labels-angles-plotly.png b/tests/testthat/test-ggplot-labels-angles-plotly.png deleted file mode 100644 index 3f5bbaeb9d..0000000000 Binary files a/tests/testthat/test-ggplot-labels-angles-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-labels-ggtitle-ggplot2.png b/tests/testthat/test-ggplot-labels-ggtitle-ggplot2.png deleted file mode 100644 index 70dc988cd7..0000000000 Binary files a/tests/testthat/test-ggplot-labels-ggtitle-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-labels-ggtitle-plotly.png b/tests/testthat/test-ggplot-labels-ggtitle-plotly.png deleted file mode 100644 index 11e54510a6..0000000000 Binary files a/tests/testthat/test-ggplot-labels-ggtitle-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-labels-scale_x_continuous_name-ggplot2.png b/tests/testthat/test-ggplot-labels-scale_x_continuous_name-ggplot2.png deleted file mode 100644 index 96fa62680c..0000000000 Binary files a/tests/testthat/test-ggplot-labels-scale_x_continuous_name-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-labels-scale_x_continuous_name-plotly.png b/tests/testthat/test-ggplot-labels-scale_x_continuous_name-plotly.png deleted file mode 100644 index ae4b7aa73b..0000000000 Binary files a/tests/testthat/test-ggplot-labels-scale_x_continuous_name-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-labels-ylab-ggplot2.png b/tests/testthat/test-ggplot-labels-ylab-ggplot2.png deleted file mode 100644 index 94a859c4dc..0000000000 Binary files a/tests/testthat/test-ggplot-labels-ylab-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-labels-ylab-plotly.png b/tests/testthat/test-ggplot-labels-ylab-plotly.png deleted file mode 100644 index 926fb3ae84..0000000000 Binary files a/tests/testthat/test-ggplot-labels-ylab-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-legend-hidden-ggplot2.png b/tests/testthat/test-ggplot-legend-hidden-ggplot2.png deleted file mode 100644 index e992ea9683..0000000000 Binary files a/tests/testthat/test-ggplot-legend-hidden-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-legend-hidden-plotly.png b/tests/testthat/test-ggplot-legend-hidden-plotly.png deleted file mode 100644 index 18606619f4..0000000000 Binary files a/tests/testthat/test-ggplot-legend-hidden-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-legend-order-ggplot2.png b/tests/testthat/test-ggplot-legend-order-ggplot2.png deleted file mode 100644 index 8183fcdbd5..0000000000 Binary files a/tests/testthat/test-ggplot-legend-order-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-legend-order-plotly.png b/tests/testthat/test-ggplot-legend-order-plotly.png deleted file mode 100644 index 634eead6ae..0000000000 Binary files a/tests/testthat/test-ggplot-legend-order-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-linetype-colors-ggplot2.png b/tests/testthat/test-ggplot-linetype-colors-ggplot2.png deleted file mode 100644 index e6d102be50..0000000000 Binary files a/tests/testthat/test-ggplot-linetype-colors-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-linetype-colors-plotly.png b/tests/testthat/test-ggplot-linetype-colors-plotly.png deleted file mode 100644 index 5243c35c85..0000000000 Binary files a/tests/testthat/test-ggplot-linetype-colors-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-linetype-types-ggplot2.png b/tests/testthat/test-ggplot-linetype-types-ggplot2.png deleted file mode 100644 index 1e77bd440f..0000000000 Binary files a/tests/testthat/test-ggplot-linetype-types-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-linetype-types-plotly.png b/tests/testthat/test-ggplot-linetype-types-plotly.png deleted file mode 100644 index 2256936880..0000000000 Binary files a/tests/testthat/test-ggplot-linetype-types-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-names-ggplot2.png b/tests/testthat/test-ggplot-names-ggplot2.png deleted file mode 100644 index 4c49989aa8..0000000000 Binary files a/tests/testthat/test-ggplot-names-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-names-plotly.png b/tests/testthat/test-ggplot-names-plotly.png deleted file mode 100644 index 62a2d4b6df..0000000000 Binary files a/tests/testthat/test-ggplot-names-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-path-colored-groups-stay-together-ggplot2.png b/tests/testthat/test-ggplot-path-colored-groups-stay-together-ggplot2.png deleted file mode 100644 index e17fe8619d..0000000000 Binary files a/tests/testthat/test-ggplot-path-colored-groups-stay-together-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-path-colored-groups-stay-together-plotly.png b/tests/testthat/test-ggplot-path-colored-groups-stay-together-plotly.png deleted file mode 100644 index 35c8255188..0000000000 Binary files a/tests/testthat/test-ggplot-path-colored-groups-stay-together-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-path-colors-ggplot2.png b/tests/testthat/test-ggplot-path-colors-ggplot2.png deleted file mode 100644 index f564f2b0fe..0000000000 Binary files a/tests/testthat/test-ggplot-path-colors-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-path-colors-plotly.png b/tests/testthat/test-ggplot-path-colors-plotly.png deleted file mode 100644 index 178c5412e1..0000000000 Binary files a/tests/testthat/test-ggplot-path-colors-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-path-line-symbols-ggplot2.png b/tests/testthat/test-ggplot-path-line-symbols-ggplot2.png deleted file mode 100644 index 835c93fcbc..0000000000 Binary files a/tests/testthat/test-ggplot-path-line-symbols-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-path-line-symbols-plotly.png b/tests/testthat/test-ggplot-path-line-symbols-plotly.png deleted file mode 100644 index f01303192e..0000000000 Binary files a/tests/testthat/test-ggplot-path-line-symbols-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-path-lines-diff-from-paths-ggplot2.png b/tests/testthat/test-ggplot-path-lines-diff-from-paths-ggplot2.png deleted file mode 100644 index f6d594957e..0000000000 Binary files a/tests/testthat/test-ggplot-path-lines-diff-from-paths-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-path-lines-diff-from-paths-plotly.png b/tests/testthat/test-ggplot-path-lines-diff-from-paths-plotly.png deleted file mode 100644 index d83eb5011f..0000000000 Binary files a/tests/testthat/test-ggplot-path-lines-diff-from-paths-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-borders-ggplot2.png b/tests/testthat/test-ggplot-polygons-borders-ggplot2.png deleted file mode 100644 index 394d43f3c4..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-borders-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-borders-plotly.png b/tests/testthat/test-ggplot-polygons-borders-plotly.png deleted file mode 100644 index 9348716e27..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-borders-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-dashed-ggplot2.png b/tests/testthat/test-ggplot-polygons-dashed-ggplot2.png deleted file mode 100644 index a0ebc65e61..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-dashed-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-dashed-plotly.png b/tests/testthat/test-ggplot-polygons-dashed-plotly.png deleted file mode 100644 index a276fb016d..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-dashed-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-filled-polygons-ggplot2.png b/tests/testthat/test-ggplot-polygons-filled-polygons-ggplot2.png deleted file mode 100644 index ca5c741e6e..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-filled-polygons-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-filled-polygons-plotly.png b/tests/testthat/test-ggplot-polygons-filled-polygons-plotly.png deleted file mode 100644 index bddc6c481e..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-filled-polygons-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-halloween-ggplot2.png b/tests/testthat/test-ggplot-polygons-halloween-ggplot2.png deleted file mode 100644 index 3428d11b3e..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-halloween-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-halloween-plotly.png b/tests/testthat/test-ggplot-polygons-halloween-plotly.png deleted file mode 100644 index fbdb75012a..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-halloween-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-springgreen3-ggplot2.png b/tests/testthat/test-ggplot-polygons-springgreen3-ggplot2.png deleted file mode 100644 index 459aff6f1e..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-springgreen3-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-springgreen3-lab-ggplot2.png b/tests/testthat/test-ggplot-polygons-springgreen3-lab-ggplot2.png deleted file mode 100644 index dbd3611042..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-springgreen3-lab-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-springgreen3-lab-plotly.png b/tests/testthat/test-ggplot-polygons-springgreen3-lab-plotly.png deleted file mode 100644 index 7938cafd6f..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-springgreen3-lab-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-polygons-springgreen3-plotly.png b/tests/testthat/test-ggplot-polygons-springgreen3-plotly.png deleted file mode 100644 index c460e81ba3..0000000000 Binary files a/tests/testthat/test-ggplot-polygons-springgreen3-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-ribbon-ggplot2.png b/tests/testthat/test-ggplot-ribbon-ggplot2.png deleted file mode 100644 index 5badf59fb8..0000000000 Binary files a/tests/testthat/test-ggplot-ribbon-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-ribbon-plotly.png b/tests/testthat/test-ggplot-ribbon-plotly.png deleted file mode 100644 index 64eff8c136..0000000000 Binary files a/tests/testthat/test-ggplot-ribbon-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-segment-ggplot2.png b/tests/testthat/test-ggplot-segment-ggplot2.png deleted file mode 100644 index 4197f9023d..0000000000 Binary files a/tests/testthat/test-ggplot-segment-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-segment-plotly.png b/tests/testthat/test-ggplot-segment-plotly.png deleted file mode 100644 index d92c283e60..0000000000 Binary files a/tests/testthat/test-ggplot-segment-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-size-global-scaling-ggplot2.png b/tests/testthat/test-ggplot-size-global-scaling-ggplot2.png deleted file mode 100644 index 8356d68752..0000000000 Binary files a/tests/testthat/test-ggplot-size-global-scaling-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-size-global-scaling-plotly.png b/tests/testthat/test-ggplot-size-global-scaling-plotly.png deleted file mode 100644 index fee2e68d82..0000000000 Binary files a/tests/testthat/test-ggplot-size-global-scaling-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-size-is-a-vector-ggplot2.png b/tests/testthat/test-ggplot-size-is-a-vector-ggplot2.png deleted file mode 100644 index 19e462855e..0000000000 Binary files a/tests/testthat/test-ggplot-size-is-a-vector-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-size-is-a-vector-plotly.png b/tests/testthat/test-ggplot-size-is-a-vector-plotly.png deleted file mode 100644 index 741e4ba1b1..0000000000 Binary files a/tests/testthat/test-ggplot-size-is-a-vector-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-size-not-a-vector-ggplot2.png b/tests/testthat/test-ggplot-size-not-a-vector-ggplot2.png deleted file mode 100644 index b4082e2d44..0000000000 Binary files a/tests/testthat/test-ggplot-size-not-a-vector-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-size-not-a-vector-plotly.png b/tests/testthat/test-ggplot-size-not-a-vector-plotly.png deleted file mode 100644 index ce70e2ee06..0000000000 Binary files a/tests/testthat/test-ggplot-size-not-a-vector-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-stack-ggplot2.png b/tests/testthat/test-ggplot-stack-ggplot2.png deleted file mode 100644 index b725184648..0000000000 Binary files a/tests/testthat/test-ggplot-stack-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-stack-plotly.png b/tests/testthat/test-ggplot-stack-plotly.png deleted file mode 100644 index 2fa1a90ffc..0000000000 Binary files a/tests/testthat/test-ggplot-stack-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.hv-ggplot2.png b/tests/testthat/test-ggplot-step-gg.hv-ggplot2.png deleted file mode 100644 index 32346318b4..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.hv-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.hv-plotly.png b/tests/testthat/test-ggplot-step-gg.hv-plotly.png deleted file mode 100644 index 2dcf14ffd6..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.hv-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.hvh-plotly.png b/tests/testthat/test-ggplot-step-gg.hvh-plotly.png deleted file mode 100644 index fadc4f42db..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.hvh-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.linear-geom_line-ggplot2.png b/tests/testthat/test-ggplot-step-gg.linear-geom_line-ggplot2.png deleted file mode 100644 index da396c3dad..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.linear-geom_line-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.linear-geom_line-plotly.png b/tests/testthat/test-ggplot-step-gg.linear-geom_line-plotly.png deleted file mode 100644 index c31836296a..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.linear-geom_line-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.linear-geom_path-ggplot2.png b/tests/testthat/test-ggplot-step-gg.linear-geom_path-ggplot2.png deleted file mode 100644 index da396c3dad..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.linear-geom_path-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.linear-geom_path-plotly.png b/tests/testthat/test-ggplot-step-gg.linear-geom_path-plotly.png deleted file mode 100644 index c31836296a..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.linear-geom_path-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.vh-ggplot2.png b/tests/testthat/test-ggplot-step-gg.vh-ggplot2.png deleted file mode 100644 index 84cf743ef3..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.vh-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.vh-plotly.png b/tests/testthat/test-ggplot-step-gg.vh-plotly.png deleted file mode 100644 index 9fbcc4e27e..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.vh-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-step-gg.vhv-plotly.png b/tests/testthat/test-ggplot-step-gg.vhv-plotly.png deleted file mode 100644 index 147d157753..0000000000 Binary files a/tests/testthat/test-ggplot-step-gg.vhv-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-text-ggplot2.png b/tests/testthat/test-ggplot-text-ggplot2.png deleted file mode 100644 index eff680d36e..0000000000 Binary files a/tests/testthat/test-ggplot-text-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-text-plotly.png b/tests/testthat/test-ggplot-text-plotly.png deleted file mode 100644 index 7c68324710..0000000000 Binary files a/tests/testthat/test-ggplot-text-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-background-ggplot2.png b/tests/testthat/test-ggplot-theme-background-ggplot2.png deleted file mode 100644 index 9bc6e36071..0000000000 Binary files a/tests/testthat/test-ggplot-theme-background-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-background-plotly.png b/tests/testthat/test-ggplot-theme-background-plotly.png deleted file mode 100644 index 0a66624227..0000000000 Binary files a/tests/testthat/test-ggplot-theme-background-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-dashed-grid-lines-ggplot2.png b/tests/testthat/test-ggplot-theme-dashed-grid-lines-ggplot2.png deleted file mode 100644 index 6f86224c1d..0000000000 Binary files a/tests/testthat/test-ggplot-theme-dashed-grid-lines-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-dashed-grid-lines-plotly.png b/tests/testthat/test-ggplot-theme-dashed-grid-lines-plotly.png deleted file mode 100644 index 2dbfc77a1a..0000000000 Binary files a/tests/testthat/test-ggplot-theme-dashed-grid-lines-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-marker-default-ggplot2.png b/tests/testthat/test-ggplot-theme-marker-default-ggplot2.png deleted file mode 100644 index 8356d68752..0000000000 Binary files a/tests/testthat/test-ggplot-theme-marker-default-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-marker-default-plotly.png b/tests/testthat/test-ggplot-theme-marker-default-plotly.png deleted file mode 100644 index fee2e68d82..0000000000 Binary files a/tests/testthat/test-ggplot-theme-marker-default-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-panel-border-1-ggplot2.png b/tests/testthat/test-ggplot-theme-panel-border-1-ggplot2.png deleted file mode 100644 index b4082e2d44..0000000000 Binary files a/tests/testthat/test-ggplot-theme-panel-border-1-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-panel-border-1-plotly.png b/tests/testthat/test-ggplot-theme-panel-border-1-plotly.png deleted file mode 100644 index 6ba8395518..0000000000 Binary files a/tests/testthat/test-ggplot-theme-panel-border-1-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-panel-border-2-ggplot2.png b/tests/testthat/test-ggplot-theme-panel-border-2-ggplot2.png deleted file mode 100644 index 721493ace3..0000000000 Binary files a/tests/testthat/test-ggplot-theme-panel-border-2-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-panel-border-2-plotly.png b/tests/testthat/test-ggplot-theme-panel-border-2-plotly.png deleted file mode 100644 index f25102df9f..0000000000 Binary files a/tests/testthat/test-ggplot-theme-panel-border-2-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-ticks-and-grids-ggplot2.png b/tests/testthat/test-ggplot-theme-ticks-and-grids-ggplot2.png deleted file mode 100644 index ad6f145a0c..0000000000 Binary files a/tests/testthat/test-ggplot-theme-ticks-and-grids-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-ticks-and-grids-plotly.png b/tests/testthat/test-ggplot-theme-ticks-and-grids-plotly.png deleted file mode 100644 index 9fa8c78081..0000000000 Binary files a/tests/testthat/test-ggplot-theme-ticks-and-grids-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-ticks-default-ggplot2.png b/tests/testthat/test-ggplot-theme-ticks-default-ggplot2.png deleted file mode 100644 index b4082e2d44..0000000000 Binary files a/tests/testthat/test-ggplot-theme-ticks-default-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-ticks-default-plotly.png b/tests/testthat/test-ggplot-theme-ticks-default-plotly.png deleted file mode 100644 index ce70e2ee06..0000000000 Binary files a/tests/testthat/test-ggplot-theme-ticks-default-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-zeroline-default-ggplot2.png b/tests/testthat/test-ggplot-theme-zeroline-default-ggplot2.png deleted file mode 100644 index b4082e2d44..0000000000 Binary files a/tests/testthat/test-ggplot-theme-zeroline-default-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-theme-zeroline-default-plotly.png b/tests/testthat/test-ggplot-theme-zeroline-default-plotly.png deleted file mode 100644 index ce70e2ee06..0000000000 Binary files a/tests/testthat/test-ggplot-theme-zeroline-default-plotly.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-violin-ggplot2.png b/tests/testthat/test-ggplot-violin-ggplot2.png deleted file mode 100644 index 4870a9c252..0000000000 Binary files a/tests/testthat/test-ggplot-violin-ggplot2.png and /dev/null differ diff --git a/tests/testthat/test-ggplot-violin-plotly.png b/tests/testthat/test-ggplot-violin-plotly.png deleted file mode 100644 index 7ae06d66d6..0000000000 Binary files a/tests/testthat/test-ggplot-violin-plotly.png and /dev/null differ