From 9f469e60d77d6a1770b58398457f2a32fe73ce10 Mon Sep 17 00:00:00 2001 From: Carson Sievert Date: Tue, 16 Oct 2018 10:25:47 -0500 Subject: [PATCH 1/6] leverage new vdiffr::expect_doppelganger() arg --- inst/docker/Dockerfile.vtest | 2 +- tests/testthat/helper-vdiffr.R | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/inst/docker/Dockerfile.vtest b/inst/docker/Dockerfile.vtest index a7e59bcd91..68a4c7faa2 100644 --- a/inst/docker/Dockerfile.vtest +++ b/inst/docker/Dockerfile.vtest @@ -86,7 +86,7 @@ RUN printf '#!/bin/bash \nxvfb-run --auto-servernum --server-args "-screen 0 640 RUN chmod 777 /usr/bin/orca # install visual testing packages -RUN R -e "devtools::install_github('cpsievert/vdiffr@diffObj')" +RUN R -e "devtools::install_github('lionel-/vdiffr#48')" RUN R -e "devtools::install_github('brodieG/diffobj@development')" # switch on visual testing diff --git a/tests/testthat/helper-vdiffr.R b/tests/testthat/helper-vdiffr.R index 7bd3c91803..b9ff1bd775 100644 --- a/tests/testthat/helper-vdiffr.R +++ b/tests/testthat/helper-vdiffr.R @@ -20,7 +20,7 @@ if (enable_vdiffr) { } # define logic for writing svg in vdiffr - write_svg.plotly <- function(p, file, title, user_fonts = NULL) { + write_plotly_svg <- function(p, file, title) { # before exporting, specify trace[i].uid so resulting svg is deterministic # https://github.com/plotly/orca/issues/133 p <- plotly_build(p) @@ -58,7 +58,7 @@ expect_doppelganger <- function(p, name, ...) { # otherwise comparing svg produces false positives set.seed(555) if (ggplot2::is.ggplot(p)) p <- ggplotly(p) - vdiffr::expect_doppelganger(name, p, ...) + vdiffr::expect_doppelganger(name, p, ..., writer = write_plotly_svg) } else { invisible(NULL) } From 6b8f4ed68c0551432b6698e197f9becfe179a2d4 Mon Sep 17 00:00:00 2001 From: Carson Sievert Date: Tue, 16 Oct 2018 10:37:38 -0500 Subject: [PATCH 2/6] why isn't travis building? --- .travis.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index e7c2c4acb1..f7e97e6beb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,15 +4,12 @@ sudo: true dist: trusty warnings_are_errors: false -matrix: - include: - - r: - - devel - - oldrel - - release - # run visual tests - # TODO: push the svg files somewhere on after_failure? - before_script: docker run -e MAPBOX_TOKEN=$MAPBOX_TOKEN -v $(pwd):/home/plotly --privileged cpsievert/plotly-orca R -e "devtools::install_deps('/home/plotly', dep = T); res <- devtools::test('/home/plotly', reporter='summary'); df <- as.data.frame(res); if (sum(df\$failed) > 0 || any(df\$error)) q(status=1)" + +r: + - devel + - oldrel + - release + env: From 37da1b99b5fd8d26b8151eddba1d649c4085a55c Mon Sep 17 00:00:00 2001 From: Carson Sievert Date: Tue, 16 Oct 2018 11:29:53 -0500 Subject: [PATCH 3/6] travis matrix include must not support before_script --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f7e97e6beb..1bd449f5fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,14 +3,10 @@ cache: packages sudo: true dist: trusty warnings_are_errors: false - - r: - devel - oldrel - release - - env: global: @@ -30,5 +26,8 @@ before_install: # make sure R pkgs are upt-to-date - Rscript -e 'update.packages(ask = FALSE)' +before_script: + - if [[ "$TRAVIS_R_VERSION_STRING" == "release" ]]; then docker run -e MAPBOX_TOKEN=$MAPBOX_TOKEN -v $(pwd):/home/plotly --privileged cpsievert/plotly-orca R -e "devtools::install_deps('/home/plotly', dep = T); res <- devtools::test('/home/plotly', reporter='summary'); df <- as.data.frame(res); if (sum(df\$failed) > 0 || any(df\$error)) q(status=1)"; fi + # work around temporary travis + R 3.5 bug r_packages: devtools From f10c5e96ba76ee03e8be6eef3ab291e39b6a3680 Mon Sep 17 00:00:00 2001 From: Carson Sievert Date: Tue, 16 Oct 2018 11:32:20 -0500 Subject: [PATCH 4/6] validate superfluous svg changes caused by a plotly.js upgrade in #1338 Note the changes went uncaught because travis stopped building at some point --- .../abline/cookbook-axes-multiple-abline.svg | 2 +- .../abline/cookbook-axes-single-abline.svg | 2 +- tests/figs/area/area-area-fillcolor.svg | 2 +- tests/figs/area/area-simple.svg | 2 +- tests/figs/area/area-traces-order.svg | 2 +- .../bar/bar-aes-colour-guides-fill-false.svg | 2 +- .../bar/bar-aes-fill-guides-color-none.svg | 2 +- tests/figs/bar/bar-black-outline.svg | 2 +- tests/figs/bar/bar-category-names.svg | 2 +- tests/figs/bar/bar-color.svg | 2 +- tests/figs/bar/bar-coord-flip.svg | 2 +- tests/figs/bar/bar-dates.svg | 2 +- tests/figs/bar/bar-dodge.svg | 2 +- tests/figs/bar/bar-identity.svg | 2 +- tests/figs/bar/bar-nocolor.svg | 2 +- tests/figs/bar/bar-position-fill.svg | 2 +- tests/figs/bar/bar-position-stack.svg | 2 +- tests/figs/bar/bar-stack.svg | 2 +- .../figs/colorbar/plotly-colorbar-expand.svg | 2 +- .../colorbar/plotly-colorbar-restrict.svg | 2 +- tests/figs/colorbar/plotly-colorbar.svg | 2 +- tests/figs/contour/contour.svg | 2 +- .../cookbook-axes-linear-axes.svg | 2 +- .../cookbook-axes-log2-coord.svg | 2 +- .../cookbook-axes-log2-labels.svg | 2 +- .../cookbook-axes-log2-scale.svg | 2 +- .../cookbook-axes-scale-y-log10-labels.svg | 2 +- .../cookbook-axes-scale-y-log10.svg | 2 +- .../cookbook-axes-bar-dodge-color-err4.svg | 2 +- .../cookbook-axes-bar-dodge-color-error.svg | 2 +- .../cookbook-axes-bar-dodge-color.svg | 2 +- .../cookbook-axes-bar-error-diff.svg | 2 +- .../cookbook-axes-bar-error-narrow.svg | 2 +- .../cookbook-axes-bar-error-wide.svg | 2 +- .../cookbook-axes-basic-bar.svg | 2 +- .../cookbook-axes-basic-horizontal-line.svg | 2 +- .../cookbook-axes-dashed-red-line.svg | 2 +- .../cookbook-axes-scatter-basic.svg | 2 +- ...ookbook-axes-scatter-facet-hline-vline.svg | 2 +- .../cookbook-axes-scatter-facet-hline.svg | 2 +- .../cookbook-axes-scatter-facet.svg | 2 +- .../cookbook-axes-scatter-hline-vline.svg | 2 +- .../cookbook-axes-scatter-hline.svg | 2 +- tests/figs/cookbook-scatter/color.svg | 2 +- tests/figs/cookbook-scatter/full-range.svg | 2 +- tests/figs/cookbook-scatter/geom-jitter.svg | 2 +- tests/figs/cookbook-scatter/hollow.svg | 2 +- tests/figs/cookbook-scatter/jitter.svg | 2 +- tests/figs/cookbook-scatter/loess.svg | 2 +- tests/figs/cookbook-scatter/overlap.svg | 2 +- .../figs/cookbook-scatter/scale-color-hue.svg | 2 +- tests/figs/cookbook-scatter/shape-manual.svg | 2 +- tests/figs/cookbook-scatter/shape.svg | 2 +- .../cookbook-scatter/smooth-lm-se-false.svg | 2 +- tests/figs/cookbook-scatter/smooth-lm.svg | 2 +- tests/figs/date/date-class-date.svg | 2 +- .../figs/date/date-irregular-time-series.svg | 2 +- tests/figs/date/date-strings.svg | 2 +- tests/figs/density2d/density2d.svg | 2 +- tests/figs/density2d/density2dfill.svg | 2 +- .../figs/errorbar/errorbar-unique-groups.svg | 2 +- tests/figs/errorbar/errorbar.svg | 2 +- tests/figs/facets/3-panels.svg | 2 +- tests/figs/facets/barley.svg | 2 +- tests/figs/facets/facet-grid-free-x.svg | 2 +- tests/figs/facets/facet-grid-free-y.svg | 2 +- tests/figs/facets/facet-grid-free.svg | 2 +- tests/figs/facets/facet-grid-labeller.svg | 2 +- tests/figs/facets/facet-wrap-free-mult.svg | 2 +- tests/figs/facets/facet-wrap-free-x.svg | 2 +- tests/figs/facets/facet-wrap-free-y-2.svg | 2 +- tests/figs/facets/facet-wrap-free-y.svg | 2 +- tests/figs/facets/facet-wrap-free.svg | 2 +- tests/figs/facets/facet-wrap-labeller.svg | 2 +- tests/figs/facets/facet-wrap.svg | 2 +- tests/figs/geom-col/col.svg | 2 +- .../geom-errorbarh/errorbar-horizontal.svg | 2 +- tests/figs/geom-jitter/jitter-basic.svg | 2 +- tests/figs/geom-point/all-shapes.svg | 2 +- tests/figs/geom-point/open-shapes.svg | 2 +- tests/figs/geom-point/point-flip.svg | 2 +- tests/figs/geom-point/point-size-alpha.svg | 2 +- tests/figs/geom-point/point-size-alpha2.svg | 2 +- tests/figs/geom-rect/rect-black.svg | 2 +- tests/figs/geom-rect/rect-black4.svg | 2 +- tests/figs/geom-rect/rect-color.svg | 2 +- tests/figs/geom-rect/rect-fill-color.svg | 2 +- tests/figs/geom-rect/rect-fill-hex-alpha.svg | 2 +- tests/figs/geom-rect/rect-fill.svg | 2 +- tests/figs/geom-sf/sf-aspect.svg | 2 +- tests/figs/geom-sf/sf-fill-text.svg | 2 +- tests/figs/geom-sf/sf-geom-collection.svg | 2 +- tests/figs/geom-sf/sf-points.svg | 2 +- tests/figs/geom-sf/sf-theme-map.svg | 2 +- tests/figs/geom-sf/sf.svg | 2 +- tests/figs/ggplot-themes/theme-background.svg | 2 +- .../ggplot-themes/theme-marker-default.svg | 2 +- .../ggplot-themes/theme-panel-border-1.svg | 2 +- .../ggplot-themes/theme-panel-border-2.svg | 2 +- .../ggplot-themes/theme-ticks-and-grids.svg | 2 +- .../ggplot-themes/theme-ticks-default.svg | 2 +- .../ggplot-themes/theme-zeroline-default.svg | 2 +- tests/figs/ggplot-ticks/ticks-line-breaks.svg | 2 +- tests/figs/ggplot-ylim/ylim-one-trace.svg | 2 +- tests/figs/heatmap/heatmap-discrete.svg | 2 +- tests/figs/heatmap/heatmap-midpoint.svg | 2 +- tests/figs/heatmap/heatmap.svg | 2 +- tests/figs/hex/hex-basic.svg | 2 +- tests/figs/hex/hex-bins.svg | 2 +- tests/figs/hex/hex-binwidth.svg | 2 +- tests/figs/histogram/histogram-counts.svg | 2 +- tests/figs/histogram/histogram-date-bins.svg | 2 +- tests/figs/histogram/histogram-dates.svg | 2 +- .../histogram/histogram-density-binwidth.svg | 2 +- tests/figs/histogram/histogram-density.svg | 2 +- .../histogram/histogram-fill-factor-dodge.svg | 2 +- .../histogram-fill-factor-facets.svg | 2 +- .../histogram-fill-factor-identity.svg | 2 +- .../figs/histogram/histogram-fill-factor.svg | 2 +- tests/figs/histogram/histogram-fill.svg | 2 +- .../histogram/histogram-fixed-fill-color.svg | 2 +- .../figs/histogram/histogram-posixt-bins.svg | 2 +- tests/figs/histogram/histogram-vline.svg | 2 +- tests/figs/hline/hline-factor.svg | 2 +- tests/figs/hline/hline-multiple.svg | 2 +- tests/figs/hline/hline.svg | 2 +- tests/figs/labels/labels-angles.svg | 2 +- tests/figs/labels/labels-ggtitle.svg | 2 +- tests/figs/labels/labels-ylab.svg | 2 +- tests/figs/legends/legend-hide-legend.svg | 2 +- tests/figs/legends/legend-hide.svg | 2 +- .../figs/legends/legend-many-legend-items.svg | 2 +- tests/figs/legends/legend-one-entry.svg | 2 +- .../legends/legend-very-long-legend-items.svg | 2 +- tests/figs/legends/scatter-legend.svg | 2 +- tests/figs/lines/linetype-colors.svg | 2 +- tests/figs/lines/linetype-types.svg | 2 +- tests/figs/maps/map-facet.svg | 2 +- .../means-and-error-bars/error-rect-alpha.svg | 2 +- .../error-simple-line-point-crazy.svg | 2 +- .../error-simple-line-point.svg | 2 +- .../error-simple-line.svg | 2 +- .../means-and-error-bars/error-simple.svg | 2 +- .../path-colored-groups-stay-together.svg | 2 +- tests/figs/path/path-colors.svg | 2 +- tests/figs/path/path-colors2.svg | 2 +- tests/figs/path/path-line-symbols.svg | 2 +- .../figs/path/path-lines-diff-from-paths.svg | 2 +- .../plotly-color-bar-color-factor-custom.svg | 2 +- .../plotly-color-color-manual.svg | 2 +- ...-color-scatterplot-color-factor-custom.svg | 2 +- ...color-scatterplot-color-factor-custom2.svg | 2 +- .../plotly-color-scatterplot-color-factor.svg | 2 +- ...color-scatterplot-color-numeric-custom.svg | 2 +- ...plotly-color-scatterplot-color-numeric.svg | 2 +- .../figs/plotly-group/plotly-nas-connect.svg | 2 +- .../plotly-group/plotly-nas-within-color.svg | 2 +- .../plotly-group/plotly-nas-within-color2.svg | 2 +- .../plotly-group/plotly-nas-within-group.svg | 2 +- tests/figs/plotly-group/plotly-nas.svg | 2 +- .../plotly-no-nas-for-irrelevant-group.svg | 2 +- .../plotly-linetype-alphabetical.svg | 2 +- .../plotly-linetype-linetype.svg | 2 +- .../plotly-linetype-linetype2.svg | 2 +- .../plotly-linetype-linetype3.svg | 2 +- .../plotly-linetype-manual.svg | 2 +- .../plotly-linetype-ordering.svg | 2 +- .../plotly-symbol-alphabetical.svg | 2 +- .../plotly-symbol/plotly-symbol-logical.svg | 2 +- .../plotly-symbol/plotly-symbol-ordering.svg | 2 +- .../figs/plotly-symbol/plotly-symbol-pch.svg | 2 +- .../plotly-symbol-scatterplot-symbol.svg | 2 +- .../plotly-symbol-scatterplot-symbol2.svg | 2 +- .../plotly-symbol-symbol-manual.svg | 2 +- tests/figs/plotly/plotly-alpha-blending.svg | 2 +- tests/figs/plotly/plotly-alpha-no-color.svg | 2 +- tests/figs/plotly/plotly-bar-inference.svg | 2 +- tests/figs/plotly/plotly-character-axis.svg | 2 +- tests/figs/plotly/plotly-factor-axis.svg | 2 +- .../figs/plotly/plotly-group-within-trace.svg | 2 +- tests/figs/plotly/plotly-histogram-vert.svg | 2 +- tests/figs/plotly/plotly-histogram.svg | 2 +- tests/figs/plotly/plotly-inherit-false.svg | 2 +- tests/figs/plotly/plotly-scatterplot.svg | 2 +- .../plotly/plotly-time-series-summary.svg | 2 +- tests/figs/polygon/polygon-aes-color.svg | 2 +- tests/figs/polygon/polygon-aes-fill.svg | 2 +- tests/figs/polygon/polygon-black.svg | 2 +- tests/figs/polygon/polygon-color-aes-fill.svg | 2 +- .../polygon-color-fill-aes-linetype.svg | 2 +- .../polygon/polygon-color-fill-aes-size.svg | 2 +- .../figs/polygon/polygon-star-fill-color.svg | 2 +- .../figs/polygon/polygon-star-group-color.svg | 2 +- tests/figs/polygon/polygon-star-group.svg | 2 +- .../figs/polygon/polygons-canada-borders.svg | 2 +- .../probability-density/density-color.svg | 2 +- .../figs/probability-density/density-fill.svg | 2 +- .../probability-density/density-histogram.svg | 2 +- .../probability-density/density-simple.svg | 2 +- .../density-traces-order.svg | 2 +- tests/figs/ribbon/ribbon-alpha.svg | 2 +- tests/figs/ribbon/ribbon-colour.svg | 2 +- tests/figs/ribbon/ribbon-fill.svg | 2 +- tests/figs/ribbon/ribbon-group.svg | 2 +- .../segment/segment-multiple-non-numeric.svg | 2 +- tests/figs/segment/segment.svg | 2 +- tests/figs/size/size-global-scaling.svg | 2 +- tests/figs/size/size-is-a-vector.svg | 2 +- tests/figs/smooth/smooth-basic.svg | 2 +- tests/figs/smooth/smooth-colour.svg | 2 +- tests/figs/smooth/smooth-facet.svg | 2 +- tests/figs/smooth/smooth-fill2.svg | 2 +- tests/figs/smooth/smooth-group.svg | 2 +- tests/figs/smooth/smooth-se-false.svg | 2 +- tests/figs/step/step-gg-hv.svg | 2 +- tests/figs/step/step-gg-hvh.svg | 2 +- tests/figs/step/step-gg-vh.svg | 2 +- tests/figs/step/step-gg-vhv.svg | 2 +- .../subplot/plotly-subplot-geo-cartesian.svg | 2 +- .../figs/subplot/plotly-subplot-ggmatrix.svg | 2491 +---------------- tests/figs/subplot/plotly-subplot-group.svg | 2 +- .../figs/subplot/plotly-subplot-plot-list.svg | 2 +- .../figs/subplot/plotly-subplot-recursive.svg | 2 +- .../figs/subplot/plotly-subplot-shareboth.svg | 2 +- tests/figs/subplot/plotly-subplot-sharex.svg | 2 +- tests/figs/subplot/plotly-subplot-sharey.svg | 2 +- tests/figs/subplot/plotly-subplot-simple.svg | 2 +- tests/figs/subplot/plotly-subplot-simple2.svg | 2 +- .../plotly-subplot-subplot-legendgroup.svg | 2 +- .../subplot/plotly-subplot-width-height.svg | 2 +- tests/figs/text/text-colour.svg | 2 +- tests/figs/text/text.svg | 2 +- tests/figs/tooltip/group-lines-hovertext.svg | 2 +- .../figs/tooltip/heatmap-discrete-tooltip.svg | 2 +- tests/figs/tooltip/hovertext-display.svg | 2 +- tests/figs/tooltip/tooltip-date.svg | 2 +- tests/figs/tooltip/tooltip-datetime.svg | 2 +- tests/figs/violin/violin-aes.svg | 2 +- tests/figs/violin/violin.svg | 2 +- tests/figs/vline/vline-multiple.svg | 2 +- tests/figs/vline/vline.svg | 2 +- 241 files changed, 241 insertions(+), 2730 deletions(-) diff --git a/tests/figs/abline/cookbook-axes-multiple-abline.svg b/tests/figs/abline/cookbook-axes-multiple-abline.svg index 6187e57b38..93c48fcd58 100644 --- a/tests/figs/abline/cookbook-axes-multiple-abline.svg +++ b/tests/figs/abline/cookbook-axes-multiple-abline.svg @@ -1 +1 @@ --5.0-2.50.02.55.0-5.0-2.50.02.55.0 +-5.0-2.50.02.55.0-5.0-2.50.02.55.0 diff --git a/tests/figs/abline/cookbook-axes-single-abline.svg b/tests/figs/abline/cookbook-axes-single-abline.svg index 73d3583f0f..a2865a455b 100644 --- a/tests/figs/abline/cookbook-axes-single-abline.svg +++ b/tests/figs/abline/cookbook-axes-single-abline.svg @@ -1 +1 @@ -01230123xy +01230123xy diff --git a/tests/figs/area/area-area-fillcolor.svg b/tests/figs/area/area-area-fillcolor.svg index 846c17f4ab..d84aebdec7 100644 --- a/tests/figs/area/area-area-fillcolor.svg +++ b/tests/figs/area/area-area-fillcolor.svg @@ -1 +1 @@ -187519001925195019750200400600yearlevel +187519001925195019750200400600yearlevel diff --git a/tests/figs/area/area-simple.svg b/tests/figs/area/area-simple.svg index bf4fb9171a..525637eba0 100644 --- a/tests/figs/area/area-simple.svg +++ b/tests/figs/area/area-simple.svg @@ -1 +1 @@ -187519001925195019750200400600yearlevel +187519001925195019750200400600yearlevel diff --git a/tests/figs/area/area-traces-order.svg b/tests/figs/area/area-traces-order.svg index 431c01371c..fc1a756804 100644 --- a/tests/figs/area/area-traces-order.svg +++ b/tests/figs/area/area-traces-order.svg @@ -1 +1 @@ -0123450.000.250.500.751.00FairGoodVery GoodPremiumIdealcaratfreqcut +0123450.000.250.500.751.00FairGoodVery GoodPremiumIdealcaratfreqcut diff --git a/tests/figs/bar/bar-aes-colour-guides-fill-false.svg b/tests/figs/bar/bar-aes-colour-guides-fill-false.svg index 23ec652e5e..2da19f1ecc 100644 --- a/tests/figs/bar/bar-aes-colour-guides-fill-false.svg +++ b/tests/figs/bar/bar-aes-colour-guides-fill-false.svg @@ -1 +1 @@ -LunchDinner051015LunchDinnertimetotal_billtime +LunchDinner051015LunchDinnertimetotal_billtime diff --git a/tests/figs/bar/bar-aes-fill-guides-color-none.svg b/tests/figs/bar/bar-aes-fill-guides-color-none.svg index b9d6c350c7..7c576a5c69 100644 --- a/tests/figs/bar/bar-aes-fill-guides-color-none.svg +++ b/tests/figs/bar/bar-aes-fill-guides-color-none.svg @@ -1 +1 @@ -LunchDinner051015LunchDinnertimetotal_billtime +LunchDinner051015LunchDinnertimetotal_billtime diff --git a/tests/figs/bar/bar-black-outline.svg b/tests/figs/bar/bar-black-outline.svg index b9d6c350c7..7c576a5c69 100644 --- a/tests/figs/bar/bar-black-outline.svg +++ b/tests/figs/bar/bar-black-outline.svg @@ -1 +1 @@ -LunchDinner051015LunchDinnertimetotal_billtime +LunchDinner051015LunchDinnertimetotal_billtime diff --git a/tests/figs/bar/bar-category-names.svg b/tests/figs/bar/bar-category-names.svg index de626a7cf0..aaa6681688 100644 --- a/tests/figs/bar/bar-category-names.svg +++ b/tests/figs/bar/bar-category-names.svg @@ -1 +1 @@ -FairGoodVery GoodPremiumIdeal02000400060008000cutprice +FairGoodVery GoodPremiumIdeal02000400060008000cutprice diff --git a/tests/figs/bar/bar-color.svg b/tests/figs/bar/bar-color.svg index 83db94eb8d..f193737731 100644 --- a/tests/figs/bar/bar-color.svg +++ b/tests/figs/bar/bar-color.svg @@ -1 +1 @@ -LunchDinner051015LunchDinnertimetotal_billtime +LunchDinner051015LunchDinnertimetotal_billtime diff --git a/tests/figs/bar/bar-coord-flip.svg b/tests/figs/bar/bar-coord-flip.svg index 6c3e6da59d..47b63ce65f 100644 --- a/tests/figs/bar/bar-coord-flip.svg +++ b/tests/figs/bar/bar-coord-flip.svg @@ -1 +1 @@ -0510468countfactor(cyl) +0510468countfactor(cyl) diff --git a/tests/figs/bar/bar-dates.svg b/tests/figs/bar/bar-dates.svg index 2aceab8183..72d6e172fd 100644 --- a/tests/figs/bar/bar-dates.svg +++ b/tests/figs/bar/bar-dates.svg @@ -1 +1 @@ -Jan 01Jan 15Feb 01Feb 1502040BioMathmonthpapersfield +Jan 01Jan 15Feb 01Feb 1502040BioMathmonthpapersfield diff --git a/tests/figs/bar/bar-dodge.svg b/tests/figs/bar/bar-dodge.svg index 40984c374c..20094ed8e8 100644 --- a/tests/figs/bar/bar-dodge.svg +++ b/tests/figs/bar/bar-dodge.svg @@ -1 +1 @@ -CanadaGermanyUSA0102030BioMathcountrypapersfield +CanadaGermanyUSA0102030BioMathcountrypapersfield diff --git a/tests/figs/bar/bar-identity.svg b/tests/figs/bar/bar-identity.svg index 73045d2bbc..18405a8dc0 100644 --- a/tests/figs/bar/bar-identity.svg +++ b/tests/figs/bar/bar-identity.svg @@ -1 +1 @@ -CanadaGermanyUSA0102030BioMathcountrypapersfield +CanadaGermanyUSA0102030BioMathcountrypapersfield diff --git a/tests/figs/bar/bar-nocolor.svg b/tests/figs/bar/bar-nocolor.svg index 4b7f251f84..e2fc921e36 100644 --- a/tests/figs/bar/bar-nocolor.svg +++ b/tests/figs/bar/bar-nocolor.svg @@ -1 +1 @@ -LunchDinner051015timetotal_bill +LunchDinner051015timetotal_bill diff --git a/tests/figs/bar/bar-position-fill.svg b/tests/figs/bar/bar-position-fill.svg index c946c71466..64ec94cd86 100644 --- a/tests/figs/bar/bar-position-fill.svg +++ b/tests/figs/bar/bar-position-fill.svg @@ -1 +1 @@ -010.000.250.500.751.00468factor(vs)countfactor(cyl) +010.000.250.500.751.00468factor(vs)countfactor(cyl) diff --git a/tests/figs/bar/bar-position-stack.svg b/tests/figs/bar/bar-position-stack.svg index cb36eb53dd..395e39d9d1 100644 --- a/tests/figs/bar/bar-position-stack.svg +++ b/tests/figs/bar/bar-position-stack.svg @@ -1 +1 @@ -01051015468factor(vs)countfactor(cyl) +01051015468factor(vs)countfactor(cyl) diff --git a/tests/figs/bar/bar-stack.svg b/tests/figs/bar/bar-stack.svg index b9f4da6982..42459f51ed 100644 --- a/tests/figs/bar/bar-stack.svg +++ b/tests/figs/bar/bar-stack.svg @@ -1 +1 @@ -CanadaGermanyUSA0102030BioMathcountrypapersfield +CanadaGermanyUSA0102030BioMathcountrypapersfield diff --git a/tests/figs/colorbar/plotly-colorbar-expand.svg b/tests/figs/colorbar/plotly-colorbar-expand.svg index c5fbfcd15d..85325efef5 100644 --- a/tests/figs/colorbar/plotly-colorbar-expand.svg +++ b/tests/figs/colorbar/plotly-colorbar-expand.svg @@ -1 +1 @@ -234544.555.566.577.5805101520cylwtcyl +234544.555.566.577.5805101520cylwtcyl diff --git a/tests/figs/colorbar/plotly-colorbar-restrict.svg b/tests/figs/colorbar/plotly-colorbar-restrict.svg index fc807dd5e6..8b0485f0ff 100644 --- a/tests/figs/colorbar/plotly-colorbar-restrict.svg +++ b/tests/figs/colorbar/plotly-colorbar-restrict.svg @@ -1 +1 @@ -234544.555.566.577.5855.566.57cylwtcyl +234544.555.566.577.5855.566.57cylwtcyl diff --git a/tests/figs/colorbar/plotly-colorbar.svg b/tests/figs/colorbar/plotly-colorbar.svg index 71260b59ab..bb9477ebfa 100644 --- a/tests/figs/colorbar/plotly-colorbar.svg +++ b/tests/figs/colorbar/plotly-colorbar.svg @@ -1 +1 @@ -234544.555.566.577.5845678cylwtcyl +234544.555.566.577.5845678cylwtcyl diff --git a/tests/figs/contour/contour.svg b/tests/figs/contour/contour.svg index 6191ef630a..a65c70f860 100644 --- a/tests/figs/contour/contour.svg +++ b/tests/figs/contour/contour.svg @@ -1 +1 @@ -02550750204060xy +02550750204060xy diff --git a/tests/figs/cookbook-axes/cookbook-axes-linear-axes.svg b/tests/figs/cookbook-axes/cookbook-axes-linear-axes.svg index e81e692bb1..b0e8a0b718 100644 --- a/tests/figs/cookbook-axes/cookbook-axes-linear-axes.svg +++ b/tests/figs/cookbook-axes/cookbook-axes-linear-axes.svg @@ -1 +1 @@ -012345050000010000001500000xvalyval +012345050000010000001500000xvalyval diff --git a/tests/figs/cookbook-axes/cookbook-axes-log2-coord.svg b/tests/figs/cookbook-axes/cookbook-axes-log2-coord.svg index 640407f178..60c66c5c3e 100644 --- a/tests/figs/cookbook-axes/cookbook-axes-log2-coord.svg +++ b/tests/figs/cookbook-axes/cookbook-axes-log2-coord.svg @@ -1 +1 @@ -01234550000010000001500000xvalyval +01234550000010000001500000xvalyval diff --git a/tests/figs/cookbook-axes/cookbook-axes-log2-labels.svg b/tests/figs/cookbook-axes/cookbook-axes-log2-labels.svg index 7fd7cdb463..621f1bfea3 100644 --- a/tests/figs/cookbook-axes/cookbook-axes-log2-labels.svg +++ b/tests/figs/cookbook-axes/cookbook-axes-log2-labels.svg @@ -1 +1 @@ -012345[object Object][object Object][object Object][object Object]xvalyval +012345[object Object][object Object][object Object][object Object]xvalyval diff --git a/tests/figs/cookbook-axes/cookbook-axes-log2-scale.svg b/tests/figs/cookbook-axes/cookbook-axes-log2-scale.svg index e3cfdb8785..5c07ab7bd1 100644 --- a/tests/figs/cookbook-axes/cookbook-axes-log2-scale.svg +++ b/tests/figs/cookbook-axes/cookbook-axes-log2-scale.svg @@ -1 +1 @@ -012345642048655362097152xvalyval +012345642048655362097152xvalyval diff --git a/tests/figs/cookbook-axes/cookbook-axes-scale-y-log10-labels.svg b/tests/figs/cookbook-axes/cookbook-axes-scale-y-log10-labels.svg index d5010d3713..ea4136760d 100644 --- a/tests/figs/cookbook-axes/cookbook-axes-scale-y-log10-labels.svg +++ b/tests/figs/cookbook-axes/cookbook-axes-scale-y-log10-labels.svg @@ -1 +1 @@ -012345[object Object][object Object][object Object][object Object][object Object][object Object]xvalyval +012345[object Object][object Object][object Object][object Object][object Object][object Object]xvalyval diff --git a/tests/figs/cookbook-axes/cookbook-axes-scale-y-log10.svg b/tests/figs/cookbook-axes/cookbook-axes-scale-y-log10.svg index 23d4e60785..ebcdaaeaa1 100644 --- a/tests/figs/cookbook-axes/cookbook-axes-scale-y-log10.svg +++ b/tests/figs/cookbook-axes/cookbook-axes-scale-y-log10.svg @@ -1 +1 @@ -0123451e+021e+041e+06xvalyval +0123451e+021e+041e+06xvalyval diff --git a/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color-err4.svg b/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color-err4.svg index 224f277782..846bf05cae 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color-err4.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color-err4.svg @@ -1 +1 @@ -controltreatment051015ABcondresultgroup +controltreatment051015ABcondresultgroup diff --git a/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color-error.svg b/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color-error.svg index 7ab79dd1ef..9d30b48758 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color-error.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color-error.svg @@ -1 +1 @@ -controltreatment0510ABcondresultgroup +controltreatment0510ABcondresultgroup diff --git a/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color.svg b/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color.svg index 8d914b78e2..53ad52906b 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-bar-dodge-color.svg @@ -1 +1 @@ -controltreatment0510ABcondresultgroup +controltreatment0510ABcondresultgroup diff --git a/tests/figs/cookbook-lines/cookbook-axes-bar-error-diff.svg b/tests/figs/cookbook-lines/cookbook-axes-bar-error-diff.svg index 51e6d9c059..e09de8a7e1 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-bar-error-diff.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-bar-error-diff.svg @@ -1 +1 @@ -controltreatment0.02.55.07.510.012.5condresult +controltreatment0.02.55.07.510.012.5condresult diff --git a/tests/figs/cookbook-lines/cookbook-axes-bar-error-narrow.svg b/tests/figs/cookbook-lines/cookbook-axes-bar-error-narrow.svg index edb1a24ff2..aeae8a969e 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-bar-error-narrow.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-bar-error-narrow.svg @@ -1 +1 @@ -controltreatment0.02.55.07.510.012.5condresult +controltreatment0.02.55.07.510.012.5condresult diff --git a/tests/figs/cookbook-lines/cookbook-axes-bar-error-wide.svg b/tests/figs/cookbook-lines/cookbook-axes-bar-error-wide.svg index 51e6d9c059..e09de8a7e1 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-bar-error-wide.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-bar-error-wide.svg @@ -1 +1 @@ -controltreatment0.02.55.07.510.012.5condresult +controltreatment0.02.55.07.510.012.5condresult diff --git a/tests/figs/cookbook-lines/cookbook-axes-basic-bar.svg b/tests/figs/cookbook-lines/cookbook-axes-basic-bar.svg index 2ca70d298e..88c162c7e1 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-basic-bar.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-basic-bar.svg @@ -1 +1 @@ -controltreatment036912condresult +controltreatment036912condresult diff --git a/tests/figs/cookbook-lines/cookbook-axes-basic-horizontal-line.svg b/tests/figs/cookbook-lines/cookbook-axes-basic-horizontal-line.svg index 3fa9bf8365..c34acc57e4 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-basic-horizontal-line.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-basic-horizontal-line.svg @@ -1 +1 @@ -controltreatment0.02.55.07.510.012.5condresult +controltreatment0.02.55.07.510.012.5condresult diff --git a/tests/figs/cookbook-lines/cookbook-axes-dashed-red-line.svg b/tests/figs/cookbook-lines/cookbook-axes-dashed-red-line.svg index 768de856d6..718d9e38be 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-dashed-red-line.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-dashed-red-line.svg @@ -1 +1 @@ -controltreatment0.02.55.07.510.012.5condresult +controltreatment0.02.55.07.510.012.5condresult diff --git a/tests/figs/cookbook-lines/cookbook-axes-scatter-basic.svg b/tests/figs/cookbook-lines/cookbook-axes-scatter-basic.svg index ea4f002629..1430966f2b 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-scatter-basic.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-scatter-basic.svg @@ -1 +1 @@ -81012910111213controltreatmentxvalyvalcond +81012910111213controltreatmentxvalyvalcond diff --git a/tests/figs/cookbook-lines/cookbook-axes-scatter-facet-hline-vline.svg b/tests/figs/cookbook-lines/cookbook-axes-scatter-facet-hline-vline.svg index 77dbf6fed0..066acf39f3 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-scatter-facet-hline-vline.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-scatter-facet-hline-vline.svg @@ -1 +1 @@ -8101291011121381012controltreatmentxvalyvalcontroltreatmentcond +8101291011121381012controltreatmentxvalyvalcontroltreatmentcond diff --git a/tests/figs/cookbook-lines/cookbook-axes-scatter-facet-hline.svg b/tests/figs/cookbook-lines/cookbook-axes-scatter-facet-hline.svg index 52cd702e01..3bfeabc880 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-scatter-facet-hline.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-scatter-facet-hline.svg @@ -1 +1 @@ -8101291011121381012controltreatmentxvalyvalcontroltreatmentcond +8101291011121381012controltreatmentxvalyvalcontroltreatmentcond diff --git a/tests/figs/cookbook-lines/cookbook-axes-scatter-facet.svg b/tests/figs/cookbook-lines/cookbook-axes-scatter-facet.svg index d9747af1f1..739c4a7888 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-scatter-facet.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-scatter-facet.svg @@ -1 +1 @@ -8101291011121381012controltreatmentxvalyvalcontroltreatmentcond +8101291011121381012controltreatmentxvalyvalcontroltreatmentcond diff --git a/tests/figs/cookbook-lines/cookbook-axes-scatter-hline-vline.svg b/tests/figs/cookbook-lines/cookbook-axes-scatter-hline-vline.svg index 4d714d67a0..80e82cc613 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-scatter-hline-vline.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-scatter-hline-vline.svg @@ -1 +1 @@ -81012910111213controltreatmentxvalyvalcond +81012910111213controltreatmentxvalyvalcond diff --git a/tests/figs/cookbook-lines/cookbook-axes-scatter-hline.svg b/tests/figs/cookbook-lines/cookbook-axes-scatter-hline.svg index 1bb85336d8..88b833aaae 100644 --- a/tests/figs/cookbook-lines/cookbook-axes-scatter-hline.svg +++ b/tests/figs/cookbook-lines/cookbook-axes-scatter-hline.svg @@ -1 +1 @@ -81012910111213controltreatmentxvalyvalcond +81012910111213controltreatmentxvalyvalcond diff --git a/tests/figs/cookbook-scatter/color.svg b/tests/figs/cookbook-scatter/color.svg index 1eab2ba967..5924fa49ce 100644 --- a/tests/figs/cookbook-scatter/color.svg +++ b/tests/figs/cookbook-scatter/color.svg @@ -1 +1 @@ -01020300510152025ABxvaryvarcond +01020300510152025ABxvaryvarcond diff --git a/tests/figs/cookbook-scatter/full-range.svg b/tests/figs/cookbook-scatter/full-range.svg index cc27ccd0cc..7dd41c9627 100644 --- a/tests/figs/cookbook-scatter/full-range.svg +++ b/tests/figs/cookbook-scatter/full-range.svg @@ -1 +1 @@ -010203001020ABxvaryvarcond +010203001020ABxvaryvarcond diff --git a/tests/figs/cookbook-scatter/geom-jitter.svg b/tests/figs/cookbook-scatter/geom-jitter.svg index 8a21b426ed..81a7d4e8b6 100644 --- a/tests/figs/cookbook-scatter/geom-jitter.svg +++ b/tests/figs/cookbook-scatter/geom-jitter.svg @@ -1 +1 @@ -01020300510152025xrndyrnd +01020300510152025xrndyrnd diff --git a/tests/figs/cookbook-scatter/hollow.svg b/tests/figs/cookbook-scatter/hollow.svg index 779065ca9b..9e4bb6f001 100644 --- a/tests/figs/cookbook-scatter/hollow.svg +++ b/tests/figs/cookbook-scatter/hollow.svg @@ -1 +1 @@ -01020300510152025xvaryvar +01020300510152025xvaryvar diff --git a/tests/figs/cookbook-scatter/jitter.svg b/tests/figs/cookbook-scatter/jitter.svg index 8a21b426ed..81a7d4e8b6 100644 --- a/tests/figs/cookbook-scatter/jitter.svg +++ b/tests/figs/cookbook-scatter/jitter.svg @@ -1 +1 @@ -01020300510152025xrndyrnd +01020300510152025xrndyrnd diff --git a/tests/figs/cookbook-scatter/loess.svg b/tests/figs/cookbook-scatter/loess.svg index b18cd5041b..5038d22179 100644 --- a/tests/figs/cookbook-scatter/loess.svg +++ b/tests/figs/cookbook-scatter/loess.svg @@ -1 +1 @@ -010203001020xvaryvar +010203001020xvaryvar diff --git a/tests/figs/cookbook-scatter/overlap.svg b/tests/figs/cookbook-scatter/overlap.svg index ad5037abd6..25399adea6 100644 --- a/tests/figs/cookbook-scatter/overlap.svg +++ b/tests/figs/cookbook-scatter/overlap.svg @@ -1 +1 @@ -01020300510152025xrndyrnd +01020300510152025xrndyrnd diff --git a/tests/figs/cookbook-scatter/scale-color-hue.svg b/tests/figs/cookbook-scatter/scale-color-hue.svg index 746ef3c66b..ecfdfd5fb0 100644 --- a/tests/figs/cookbook-scatter/scale-color-hue.svg +++ b/tests/figs/cookbook-scatter/scale-color-hue.svg @@ -1 +1 @@ -01020300510152025ABxvaryvarcond +01020300510152025ABxvaryvarcond diff --git a/tests/figs/cookbook-scatter/shape-manual.svg b/tests/figs/cookbook-scatter/shape-manual.svg index fb4aacaa1b..4efe9b763a 100644 --- a/tests/figs/cookbook-scatter/shape-manual.svg +++ b/tests/figs/cookbook-scatter/shape-manual.svg @@ -1 +1 @@ -01020300510152025ABxvaryvarcond +01020300510152025ABxvaryvarcond diff --git a/tests/figs/cookbook-scatter/shape.svg b/tests/figs/cookbook-scatter/shape.svg index 5791b43b38..38f3b4c5d3 100644 --- a/tests/figs/cookbook-scatter/shape.svg +++ b/tests/figs/cookbook-scatter/shape.svg @@ -1 +1 @@ -01020300510152025ABxvaryvarcond +01020300510152025ABxvaryvarcond diff --git a/tests/figs/cookbook-scatter/smooth-lm-se-false.svg b/tests/figs/cookbook-scatter/smooth-lm-se-false.svg index af0295eda2..5589e8de80 100644 --- a/tests/figs/cookbook-scatter/smooth-lm-se-false.svg +++ b/tests/figs/cookbook-scatter/smooth-lm-se-false.svg @@ -1 +1 @@ -01020300510152025xvaryvar +01020300510152025xvaryvar diff --git a/tests/figs/cookbook-scatter/smooth-lm.svg b/tests/figs/cookbook-scatter/smooth-lm.svg index 0e24f7e5f4..8c8cb20a39 100644 --- a/tests/figs/cookbook-scatter/smooth-lm.svg +++ b/tests/figs/cookbook-scatter/smooth-lm.svg @@ -1 +1 @@ -010203001020xvaryvar +010203001020xvaryvar diff --git a/tests/figs/date/date-class-date.svg b/tests/figs/date/date-class-date.svg index 7d1dc3084f..b42726b1ac 100644 --- a/tests/figs/date/date-class-date.svg +++ b/tests/figs/date/date-class-date.svg @@ -1 +1 @@ -Jan 01Jan 02Jan 032.002.252.502.753.00xy +Jan 01Jan 02Jan 032.002.252.502.753.00xy diff --git a/tests/figs/date/date-irregular-time-series.svg b/tests/figs/date/date-irregular-time-series.svg index fa63251544..bb39c99b09 100644 --- a/tests/figs/date/date-irregular-time-series.svg +++ b/tests/figs/date/date-irregular-time-series.svg @@ -1 +1 @@ -JanFebMar0.000.250.500.751.00dateprice +JanFebMar0.000.250.500.751.00dateprice diff --git a/tests/figs/date/date-strings.svg b/tests/figs/date/date-strings.svg index 109a3f7c63..9d1be25a39 100644 --- a/tests/figs/date/date-strings.svg +++ b/tests/figs/date/date-strings.svg @@ -1 +1 @@ -Apr 1983Jul 1983Oct 1983Jan 1984Apr 19840.02.55.07.510.0meyoutime.objdollarswho +Apr 1983Jul 1983Oct 1983Jan 1984Apr 19840.02.55.07.510.0meyoutime.objdollarswho diff --git a/tests/figs/density2d/density2d.svg b/tests/figs/density2d/density2d.svg index e1b85f8f83..851b184875 100644 --- a/tests/figs/density2d/density2d.svg +++ b/tests/figs/density2d/density2d.svg @@ -1 +1 @@ -12345406080100durationwaiting +12345406080100durationwaiting diff --git a/tests/figs/density2d/density2dfill.svg b/tests/figs/density2d/density2dfill.svg index e398747efb..e156c3c636 100644 --- a/tests/figs/density2d/density2dfill.svg +++ b/tests/figs/density2d/density2dfill.svg @@ -1 +1 @@ -24640608010012345678910111213141516171819200.0050.0100.0150.020leveleruptionswaitingcolour +24640608010012345678910111213141516171819200.0050.0100.0150.020leveleruptionswaitingcolour diff --git a/tests/figs/errorbar/errorbar-unique-groups.svg b/tests/figs/errorbar/errorbar-unique-groups.svg index eef03c5cbf..64df8b0bc3 100644 --- a/tests/figs/errorbar/errorbar-unique-groups.svg +++ b/tests/figs/errorbar/errorbar-unique-groups.svg @@ -1 +1 @@ -12123451234trtrespgroup +12123451234trtrespgroup diff --git a/tests/figs/errorbar/errorbar.svg b/tests/figs/errorbar/errorbar.svg index 460944af51..2f39475464 100644 --- a/tests/figs/errorbar/errorbar.svg +++ b/tests/figs/errorbar/errorbar.svg @@ -1 +1 @@ -345678915202530cylm +345678915202530cylm diff --git a/tests/figs/facets/3-panels.svg b/tests/figs/facets/3-panels.svg index 88bf8590a1..5df58b1fd3 100644 --- a/tests/figs/facets/3-panels.svg +++ b/tests/figs/facets/3-panels.svg @@ -1 +1 @@ -0.000.250.500.751.000.000.250.500.751.000.000.250.500.751.000.000.250.500.751.00xyabc +0.000.250.500.751.000.000.250.500.751.000.000.250.500.751.000.000.250.500.751.00xyabc diff --git a/tests/figs/facets/barley.svg b/tests/figs/facets/barley.svg index d467de6a4a..179d2fa610 100644 --- a/tests/figs/facets/barley.svg +++ b/tests/figs/facets/barley.svg @@ -1 +1 @@ -SvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38TrebiSvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38TrebiSvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38TrebiSvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38TrebiSvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38Trebi2030405060SvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38Trebi19321931yieldvarietyGrand RapidsDuluthUniversity FarmMorrisCrookstonWasecayear +SvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38TrebiSvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38TrebiSvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38TrebiSvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38TrebiSvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38Trebi2030405060SvansotaNo. 462ManchuriaNo. 475VelvetPeatlandGlabronNo. 457Wisconsin No. 38Trebi19321931yieldvarietyGrand RapidsDuluthUniversity FarmMorrisCrookstonWasecayear diff --git a/tests/figs/facets/facet-grid-free-x.svg b/tests/figs/facets/facet-grid-free-x.svg index 05ec54a37f..8b563b5176 100644 --- a/tests/figs/facets/facet-grid-free-x.svg +++ b/tests/figs/facets/facet-grid-free-x.svg @@ -1 +1 @@ -234510152025234515202530mpgwt0101 +234510152025234515202530mpgwt0101 diff --git a/tests/figs/facets/facet-grid-free-y.svg b/tests/figs/facets/facet-grid-free-y.svg index 1852a7bf31..7020286dd2 100644 --- a/tests/figs/facets/facet-grid-free-y.svg +++ b/tests/figs/facets/facet-grid-free-y.svg @@ -1 +1 @@ -23451015202530351.52.02.53.03.5101520253035mpgwt0101 +23451015202530351.52.02.53.03.5101520253035mpgwt0101 diff --git a/tests/figs/facets/facet-grid-free.svg b/tests/figs/facets/facet-grid-free.svg index 95e5e0ef9d..c4e0a4a02d 100644 --- a/tests/figs/facets/facet-grid-free.svg +++ b/tests/figs/facets/facet-grid-free.svg @@ -1 +1 @@ -2345101520251.52.02.53.03.515202530mpgwt0101 +2345101520251.52.02.53.03.515202530mpgwt0101 diff --git a/tests/figs/facets/facet-grid-labeller.svg b/tests/figs/facets/facet-grid-labeller.svg index 629f8d085f..0a92074cc0 100644 --- a/tests/figs/facets/facet-grid-labeller.svg +++ b/tests/figs/facets/facet-grid-labeller.svg @@ -1 +1 @@ -23451015202530352345101520253035mpgwtam: 0am: 1vs: 0vs: 1 +23451015202530352345101520253035mpgwtam: 0am: 1vs: 0vs: 1 diff --git a/tests/figs/facets/facet-wrap-free-mult.svg b/tests/figs/facets/facet-wrap-free-mult.svg index 3acd3d8f9f..335315783f 100644 --- a/tests/figs/facets/facet-wrap-free-mult.svg +++ b/tests/figs/facets/facet-wrap-free-mult.svg @@ -1 +1 @@ -25301.52.02.53.0181920212.753.003.253.5010.012.515.017.53.54.04.55.05.5mpgwt468 +25301.52.02.53.0181920212.753.003.253.5010.012.515.017.53.54.04.55.05.5mpgwt468 diff --git a/tests/figs/facets/facet-wrap-free-x.svg b/tests/figs/facets/facet-wrap-free-x.svg index bc21152c86..8da86cb9d1 100644 --- a/tests/figs/facets/facet-wrap-free-x.svg +++ b/tests/figs/facets/facet-wrap-free-x.svg @@ -1 +1 @@ -10.012.515.017.52345182022241518212423452530mpgwt00011011 +10.012.515.017.52345182022241518212423452530mpgwt00011011 diff --git a/tests/figs/facets/facet-wrap-free-y-2.svg b/tests/figs/facets/facet-wrap-free-y-2.svg index 69d0804f74..e066d012e6 100644 --- a/tests/figs/facets/facet-wrap-free-y-2.svg +++ b/tests/figs/facets/facet-wrap-free-y-2.svg @@ -1 +1 @@ -025005000750010000125005101519701980199020002010400080001200019701980199020002010200000240000280000320000510152025datevaluepcepoppsavertuempmedunemploy +025005000750010000125005101519701980199020002010400080001200019701980199020002010200000240000280000320000510152025datevaluepcepoppsavertuempmedunemploy diff --git a/tests/figs/facets/facet-wrap-free-y.svg b/tests/figs/facets/facet-wrap-free-y.svg index 3693cde4ff..a570a157bb 100644 --- a/tests/figs/facets/facet-wrap-free-y.svg +++ b/tests/figs/facets/facet-wrap-free-y.svg @@ -1 +1 @@ -1015202530353.54.04.55.05.52.42.83.23.62.502.753.003.253.501015202530351.52.02.5mpgwt00011011 +1015202530353.54.04.55.05.52.42.83.23.62.502.753.003.253.501015202530351.52.02.5mpgwt00011011 diff --git a/tests/figs/facets/facet-wrap-free.svg b/tests/figs/facets/facet-wrap-free.svg index e3700dadce..4ec432bc5c 100644 --- a/tests/figs/facets/facet-wrap-free.svg +++ b/tests/figs/facets/facet-wrap-free.svg @@ -1 +1 @@ -10.012.515.017.53.54.04.55.05.5182022242.502.753.003.253.50151821242.42.83.23.625301.52.02.5mpgwt00011011 +10.012.515.017.53.54.04.55.05.5182022242.502.753.003.253.50151821242.42.83.23.625301.52.02.5mpgwt00011011 diff --git a/tests/figs/facets/facet-wrap-labeller.svg b/tests/figs/facets/facet-wrap-labeller.svg index 90994feac3..b2c68f5401 100644 --- a/tests/figs/facets/facet-wrap-labeller.svg +++ b/tests/figs/facets/facet-wrap-labeller.svg @@ -1 +1 @@ -1015202530352345101520253035mpgwtam: 0am: 1 +1015202530352345101520253035mpgwtam: 0am: 1 diff --git a/tests/figs/facets/facet-wrap.svg b/tests/figs/facets/facet-wrap.svg index ee405f0e2b..17341e4076 100644 --- a/tests/figs/facets/facet-wrap.svg +++ b/tests/figs/facets/facet-wrap.svg @@ -1 +1 @@ -1015202530352345101520253035101520253035mpgwt468 +1015202530352345101520253035101520253035mpgwt468 diff --git a/tests/figs/geom-col/col.svg b/tests/figs/geom-col/col.svg index 9d3034473a..5e05b9c121 100644 --- a/tests/figs/geom-col/col.svg +++ b/tests/figs/geom-col/col.svg @@ -1 +1 @@ -71.4%48.3%20.0%28.6%51.7%80.0%ElementaryHighMiddle0.000.250.500.751.00excludedincludedtypepropincluded +71.4%48.3%20.0%28.6%51.7%80.0%ElementaryHighMiddle0.000.250.500.751.00excludedincludedtypepropincluded diff --git a/tests/figs/geom-errorbarh/errorbar-horizontal.svg b/tests/figs/geom-errorbarh/errorbar-horizontal.svg index 10b1e27c19..b37355d930 100644 --- a/tests/figs/geom-errorbarh/errorbar-horizontal.svg +++ b/tests/figs/geom-errorbarh/errorbar-horizontal.svg @@ -1 +1 @@ -123451212resptrtgroup +123451212resptrtgroup diff --git a/tests/figs/geom-jitter/jitter-basic.svg b/tests/figs/geom-jitter/jitter-basic.svg index 38318f6f80..125ef6d91f 100644 --- a/tests/figs/geom-jitter/jitter-basic.svg +++ b/tests/figs/geom-jitter/jitter-basic.svg @@ -1 +1 @@ -45678203040cylhwy +45678203040cylhwy diff --git a/tests/figs/geom-point/all-shapes.svg b/tests/figs/geom-point/all-shapes.svg index 775c914327..7cb3408bdc 100644 --- a/tests/figs/geom-point/all-shapes.svg +++ b/tests/figs/geom-point/all-shapes.svg @@ -1 +1 @@ --0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.0500123456789101112131415161718192021222324xy0123456789101112131415161718192021222324 +-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.050-0.050-0.0250.0000.0250.0500123456789101112131415161718192021222324xy0123456789101112131415161718192021222324 diff --git a/tests/figs/geom-point/open-shapes.svg b/tests/figs/geom-point/open-shapes.svg index bb703376d6..99a31b75f3 100644 --- a/tests/figs/geom-point/open-shapes.svg +++ b/tests/figs/geom-point/open-shapes.svg @@ -1 +1 @@ -1015202530352345mpgwt +1015202530352345mpgwt diff --git a/tests/figs/geom-point/point-flip.svg b/tests/figs/geom-point/point-flip.svg index 25b57d660e..8303256691 100644 --- a/tests/figs/geom-point/point-flip.svg +++ b/tests/figs/geom-point/point-flip.svg @@ -1 +1 @@ -05000100001500012pricecarat +05000100001500012pricecarat diff --git a/tests/figs/geom-point/point-size-alpha.svg b/tests/figs/geom-point/point-size-alpha.svg index fc279ce1fa..dbdf4c4dbf 100644 --- a/tests/figs/geom-point/point-size-alpha.svg +++ b/tests/figs/geom-point/point-size-alpha.svg @@ -1 +1 @@ -456782345cylwt +456782345cylwt diff --git a/tests/figs/geom-point/point-size-alpha2.svg b/tests/figs/geom-point/point-size-alpha2.svg index b549dd4b8a..cf6b6403d9 100644 --- a/tests/figs/geom-point/point-size-alpha2.svg +++ b/tests/figs/geom-point/point-size-alpha2.svg @@ -1 +1 @@ -060810-1012xy +060810-1012xy diff --git a/tests/figs/geom-rect/rect-black.svg b/tests/figs/geom-rect/rect-black.svg index 63fe48d31c..d521be0c6d 100644 --- a/tests/figs/geom-rect/rect-black.svg +++ b/tests/figs/geom-rect/rect-black.svg @@ -1 +1 @@ -3692.55.07.510.012.5 +3692.55.07.510.012.5 diff --git a/tests/figs/geom-rect/rect-black4.svg b/tests/figs/geom-rect/rect-black4.svg index 7b456a256b..7bb718b7fd 100644 --- a/tests/figs/geom-rect/rect-black4.svg +++ b/tests/figs/geom-rect/rect-black4.svg @@ -1 +1 @@ -12340.000.250.500.751.00 +12340.000.250.500.751.00 diff --git a/tests/figs/geom-rect/rect-color.svg b/tests/figs/geom-rect/rect-color.svg index 09557df150..800d8e0f2c 100644 --- a/tests/figs/geom-rect/rect-color.svg +++ b/tests/figs/geom-rect/rect-color.svg @@ -1 +1 @@ -12340.000.250.500.751.00coolnotstatus +12340.000.250.500.751.00coolnotstatus diff --git a/tests/figs/geom-rect/rect-fill-color.svg b/tests/figs/geom-rect/rect-fill-color.svg index 764b123f9d..febc9cdaf6 100644 --- a/tests/figs/geom-rect/rect-fill-color.svg +++ b/tests/figs/geom-rect/rect-fill-color.svg @@ -1 +1 @@ -12340.000.250.500.751.00coolnotstatus +12340.000.250.500.751.00coolnotstatus diff --git a/tests/figs/geom-rect/rect-fill-hex-alpha.svg b/tests/figs/geom-rect/rect-fill-hex-alpha.svg index 93c09c6b9c..0419edfbaa 100644 --- a/tests/figs/geom-rect/rect-fill-hex-alpha.svg +++ b/tests/figs/geom-rect/rect-fill-hex-alpha.svg @@ -1 +1 @@ -1.001.251.501.752.001.001.251.501.752.00 +1.001.251.501.752.001.001.251.501.752.00 diff --git a/tests/figs/geom-rect/rect-fill.svg b/tests/figs/geom-rect/rect-fill.svg index 85390ca62b..9f283f5703 100644 --- a/tests/figs/geom-rect/rect-fill.svg +++ b/tests/figs/geom-rect/rect-fill.svg @@ -1 +1 @@ -12340.000.250.500.751.00coolnotstatus +12340.000.250.500.751.00coolnotstatus diff --git a/tests/figs/geom-sf/sf-aspect.svg b/tests/figs/geom-sf/sf-aspect.svg index 9f65d46fec..02589de5d0 100644 --- a/tests/figs/geom-sf/sf-aspect.svg +++ b/tests/figs/geom-sf/sf-aspect.svg @@ -1 +1 @@ -84 ° W82 ° W80 ° W78 ° W76 ° W34 ° N34.5 ° N35 ° N35.5 ° N36 ° N36.5 ° N +84 ° W82 ° W80 ° W78 ° W76 ° W34 ° N34.5 ° N35 ° N35.5 ° N36 ° N36.5 ° N diff --git a/tests/figs/geom-sf/sf-fill-text.svg b/tests/figs/geom-sf/sf-fill-text.svg index 0d53158cf3..0833e75514 100644 --- a/tests/figs/geom-sf/sf-fill-text.svg +++ b/tests/figs/geom-sf/sf-fill-text.svg @@ -1 +1 @@ -84 ° W82 ° W80 ° W78 ° W76 ° W34 ° N34.5 ° N35 ° N35.5 ° N36 ° N36.5 ° N0.050.100.150.20AREA +84 ° W82 ° W80 ° W78 ° W76 ° W34 ° N34.5 ° N35 ° N35.5 ° N36 ° N36.5 ° N0.050.100.150.20AREA diff --git a/tests/figs/geom-sf/sf-geom-collection.svg b/tests/figs/geom-sf/sf-geom-collection.svg index c398688a85..f01daac1fc 100644 --- a/tests/figs/geom-sf/sf-geom-collection.svg +++ b/tests/figs/geom-sf/sf-geom-collection.svg @@ -1 +1 @@ -1234567-0.5-0.4-0.3-0.2-0.1 0.0 +1234567-0.5-0.4-0.3-0.2-0.1 0.0 diff --git a/tests/figs/geom-sf/sf-points.svg b/tests/figs/geom-sf/sf-points.svg index 7aaf04a151..cbf48ededa 100644 --- a/tests/figs/geom-sf/sf-points.svg +++ b/tests/figs/geom-sf/sf-points.svg @@ -1 +1 @@ -84 ° W82 ° W80 ° W78 ° W76 ° W34 ° N34.5 ° N35 ° N35.5 ° N36 ° N36.5 ° Nxy +84 ° W82 ° W80 ° W78 ° W76 ° W34 ° N34.5 ° N35 ° N35.5 ° N36 ° N36.5 ° Nxy diff --git a/tests/figs/geom-sf/sf-theme-map.svg b/tests/figs/geom-sf/sf-theme-map.svg index 3668482b2b..0383e6d998 100644 --- a/tests/figs/geom-sf/sf-theme-map.svg +++ b/tests/figs/geom-sf/sf-theme-map.svg @@ -1 +1 @@ - + diff --git a/tests/figs/geom-sf/sf.svg b/tests/figs/geom-sf/sf.svg index 9f65d46fec..02589de5d0 100644 --- a/tests/figs/geom-sf/sf.svg +++ b/tests/figs/geom-sf/sf.svg @@ -1 +1 @@ -84 ° W82 ° W80 ° W78 ° W76 ° W34 ° N34.5 ° N35 ° N35.5 ° N36 ° N36.5 ° N +84 ° W82 ° W80 ° W78 ° W76 ° W34 ° N34.5 ° N35 ° N35.5 ° N36 ° N36.5 ° N diff --git a/tests/figs/ggplot-themes/theme-background.svg b/tests/figs/ggplot-themes/theme-background.svg index 9a25680de3..793e5fdcfc 100644 --- a/tests/figs/ggplot-themes/theme-background.svg +++ b/tests/figs/ggplot-themes/theme-background.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width +0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width diff --git a/tests/figs/ggplot-themes/theme-marker-default.svg b/tests/figs/ggplot-themes/theme-marker-default.svg index a3d2be6d93..0ca4767b17 100644 --- a/tests/figs/ggplot-themes/theme-marker-default.svg +++ b/tests/figs/ggplot-themes/theme-marker-default.svg @@ -1 +1 @@ -2340.40.81.21.6ParaguayPeruPhilippineseduillncountrypopulation +2340.40.81.21.6ParaguayPeruPhilippineseduillncountrypopulation diff --git a/tests/figs/ggplot-themes/theme-panel-border-1.svg b/tests/figs/ggplot-themes/theme-panel-border-1.svg index d29ba745f5..e60d131748 100644 --- a/tests/figs/ggplot-themes/theme-panel-border-1.svg +++ b/tests/figs/ggplot-themes/theme-panel-border-1.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width +0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width diff --git a/tests/figs/ggplot-themes/theme-panel-border-2.svg b/tests/figs/ggplot-themes/theme-panel-border-2.svg index e8c0a0e545..a778e617ff 100644 --- a/tests/figs/ggplot-themes/theme-panel-border-2.svg +++ b/tests/figs/ggplot-themes/theme-panel-border-2.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width +0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width diff --git a/tests/figs/ggplot-themes/theme-ticks-and-grids.svg b/tests/figs/ggplot-themes/theme-ticks-and-grids.svg index 51e4bb1da5..0c851bbcae 100644 --- a/tests/figs/ggplot-themes/theme-ticks-and-grids.svg +++ b/tests/figs/ggplot-themes/theme-ticks-and-grids.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width +0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width diff --git a/tests/figs/ggplot-themes/theme-ticks-default.svg b/tests/figs/ggplot-themes/theme-ticks-default.svg index d29ba745f5..e60d131748 100644 --- a/tests/figs/ggplot-themes/theme-ticks-default.svg +++ b/tests/figs/ggplot-themes/theme-ticks-default.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width +0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width diff --git a/tests/figs/ggplot-themes/theme-zeroline-default.svg b/tests/figs/ggplot-themes/theme-zeroline-default.svg index d29ba745f5..e60d131748 100644 --- a/tests/figs/ggplot-themes/theme-zeroline-default.svg +++ b/tests/figs/ggplot-themes/theme-zeroline-default.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width +0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width diff --git a/tests/figs/ggplot-ticks/ticks-line-breaks.svg b/tests/figs/ggplot-ticks/ticks-line-breaks.svg index 54a070606e..3fc7f3de56 100644 --- a/tests/figs/ggplot-ticks/ticks-line-breaks.svg +++ b/tests/figs/ggplot-ticks/ticks-line-breaks.svg @@ -1 +1 @@ -thisis veryloooooooooooongtext toillustrate0255075100xy +thisis veryloooooooooooongtext toillustrate0255075100xy diff --git a/tests/figs/ggplot-ylim/ylim-one-trace.svg b/tests/figs/ggplot-ylim/ylim-one-trace.svg index 6ee9da3847..926a893eab 100644 --- a/tests/figs/ggplot-ylim/ylim-one-trace.svg +++ b/tests/figs/ggplot-ylim/ylim-one-trace.svg @@ -1 +1 @@ -LunchDinner051015Average bill for 2 peopleTime of dayTotal bill +LunchDinner051015Average bill for 2 peopleTime of dayTotal bill diff --git a/tests/figs/heatmap/heatmap-discrete.svg b/tests/figs/heatmap/heatmap-discrete.svg index 02f2bc584e..7d6ede4eb0 100644 --- a/tests/figs/heatmap/heatmap-discrete.svg +++ b/tests/figs/heatmap/heatmap-discrete.svg @@ -1 +1 @@ -amcarbcyldispdratgearhpmpgqsecvswtamcarbcyldispdratgearhpmpgqsecvswt-0.50.00.51.0corvar1var2 +amcarbcyldispdratgearhpmpgqsecvswtamcarbcyldispdratgearhpmpgqsecvswt-0.50.00.51.0corvar1var2 diff --git a/tests/figs/heatmap/heatmap-midpoint.svg b/tests/figs/heatmap/heatmap-midpoint.svg index 85d167546a..f99b172364 100644 --- a/tests/figs/heatmap/heatmap-midpoint.svg +++ b/tests/figs/heatmap/heatmap-midpoint.svg @@ -1 +1 @@ -0.000.250.500.751.000.000.250.500.751.000.000.250.500.751.00zxy +0.000.250.500.751.000.000.250.500.751.000.000.250.500.751.00zxy diff --git a/tests/figs/heatmap/heatmap.svg b/tests/figs/heatmap/heatmap.svg index bbf345a1c1..98d68de33e 100644 --- a/tests/figs/heatmap/heatmap.svg +++ b/tests/figs/heatmap/heatmap.svg @@ -1 +1 @@ -MondayTuesdayWednesdayThursdayFridayMorningAfternoonEvening020406080valuedaytime +MondayTuesdayWednesdayThursdayFridayMorningAfternoonEvening020406080valuedaytime diff --git a/tests/figs/hex/hex-basic.svg b/tests/figs/hex/hex-basic.svg index 4b532b3bea..d1f1d4f479 100644 --- a/tests/figs/hex/hex-basic.svg +++ b/tests/figs/hex/hex-basic.svg @@ -1 +1 @@ -01234505000100001500010002000300040005000countcaratprice +01234505000100001500010002000300040005000countcaratprice diff --git a/tests/figs/hex/hex-bins.svg b/tests/figs/hex/hex-bins.svg index 1286ced69f..c312e3e5c9 100644 --- a/tests/figs/hex/hex-bins.svg +++ b/tests/figs/hex/hex-bins.svg @@ -1 +1 @@ -01234505000100001500020000250050007500countcaratprice +01234505000100001500020000250050007500countcaratprice diff --git a/tests/figs/hex/hex-binwidth.svg b/tests/figs/hex/hex-binwidth.svg index da7471c06e..f599fc03ed 100644 --- a/tests/figs/hex/hex-binwidth.svg +++ b/tests/figs/hex/hex-binwidth.svg @@ -1 +1 @@ -0240500010000150002000050001000015000countcaratprice +0240500010000150002000050001000015000countcaratprice diff --git a/tests/figs/histogram/histogram-counts.svg b/tests/figs/histogram/histogram-counts.svg index 97b0bb3055..a8fd00e8aa 100644 --- a/tests/figs/histogram/histogram-counts.svg +++ b/tests/figs/histogram/histogram-counts.svg @@ -1 +1 @@ -23450246wtcount +23450246wtcount diff --git a/tests/figs/histogram/histogram-date-bins.svg b/tests/figs/histogram/histogram-date-bins.svg index 0a41140cc9..fb0c79c111 100644 --- a/tests/figs/histogram/histogram-date-bins.svg +++ b/tests/figs/histogram/histogram-date-bins.svg @@ -1 +1 @@ -2013-072014-012014-072015-01020406080datecount +2013-072014-012014-072015-01020406080datecount diff --git a/tests/figs/histogram/histogram-dates.svg b/tests/figs/histogram/histogram-dates.svg index b3f7209f57..ef1d87a028 100644 --- a/tests/figs/histogram/histogram-dates.svg +++ b/tests/figs/histogram/histogram-dates.svg @@ -1 +1 @@ -Jan 01Jan 15Feb 01Feb 15Mar 010123monthcount +Jan 01Jan 15Feb 01Feb 15Mar 010123monthcount diff --git a/tests/figs/histogram/histogram-density-binwidth.svg b/tests/figs/histogram/histogram-density-binwidth.svg index c3eac920f7..2ea3f07f5d 100644 --- a/tests/figs/histogram/histogram-density-binwidth.svg +++ b/tests/figs/histogram/histogram-density-binwidth.svg @@ -1 +1 @@ -23450.00.20.40.6wtdensity +23450.00.20.40.6wtdensity diff --git a/tests/figs/histogram/histogram-density.svg b/tests/figs/histogram/histogram-density.svg index 0fcb1f9fa4..ded4280b8f 100644 --- a/tests/figs/histogram/histogram-density.svg +++ b/tests/figs/histogram/histogram-density.svg @@ -1 +1 @@ -23450.00.51.01.5wtdensity +23450.00.51.01.5wtdensity diff --git a/tests/figs/histogram/histogram-fill-factor-dodge.svg b/tests/figs/histogram/histogram-fill-factor-dodge.svg index e23d4bdf76..838bf5b6f6 100644 --- a/tests/figs/histogram/histogram-fill-factor-dodge.svg +++ b/tests/figs/histogram/histogram-fill-factor-dodge.svg @@ -1 +1 @@ -23450123401wtcountfactor(vs) +23450123401wtcountfactor(vs) diff --git a/tests/figs/histogram/histogram-fill-factor-facets.svg b/tests/figs/histogram/histogram-fill-factor-facets.svg index 389c487929..f07709e679 100644 --- a/tests/figs/histogram/histogram-fill-factor-facets.svg +++ b/tests/figs/histogram/histogram-fill-factor-facets.svg @@ -1 +1 @@ -23450246234501wtcount01factor(vs) +23450246234501wtcount01factor(vs) diff --git a/tests/figs/histogram/histogram-fill-factor-identity.svg b/tests/figs/histogram/histogram-fill-factor-identity.svg index 08ca48e358..97c35f8a75 100644 --- a/tests/figs/histogram/histogram-fill-factor-identity.svg +++ b/tests/figs/histogram/histogram-fill-factor-identity.svg @@ -1 +1 @@ -23450123401wtcountfactor(vs) +23450123401wtcountfactor(vs) diff --git a/tests/figs/histogram/histogram-fill-factor.svg b/tests/figs/histogram/histogram-fill-factor.svg index 0dc54a7d29..cc2ce7eaaf 100644 --- a/tests/figs/histogram/histogram-fill-factor.svg +++ b/tests/figs/histogram/histogram-fill-factor.svg @@ -1 +1 @@ -2345024601wtcountfactor(vs) +2345024601wtcountfactor(vs) diff --git a/tests/figs/histogram/histogram-fill.svg b/tests/figs/histogram/histogram-fill.svg index bdda7278ec..c23eb3d443 100644 --- a/tests/figs/histogram/histogram-fill.svg +++ b/tests/figs/histogram/histogram-fill.svg @@ -1 +1 @@ -234502460246countwtcount +234502460246countwtcount diff --git a/tests/figs/histogram/histogram-fixed-fill-color.svg b/tests/figs/histogram/histogram-fixed-fill-color.svg index 54b8200384..fe27240581 100644 --- a/tests/figs/histogram/histogram-fixed-fill-color.svg +++ b/tests/figs/histogram/histogram-fixed-fill-color.svg @@ -1 +1 @@ -23450246wtcount +23450246wtcount diff --git a/tests/figs/histogram/histogram-posixt-bins.svg b/tests/figs/histogram/histogram-posixt-bins.svg index 0a41140cc9..fb0c79c111 100644 --- a/tests/figs/histogram/histogram-posixt-bins.svg +++ b/tests/figs/histogram/histogram-posixt-bins.svg @@ -1 +1 @@ -2013-072014-012014-072015-01020406080datecount +2013-072014-012014-072015-01020406080datecount diff --git a/tests/figs/histogram/histogram-vline.svg b/tests/figs/histogram/histogram-vline.svg index 4e53a6012b..1bbc0d0e9d 100644 --- a/tests/figs/histogram/histogram-vline.svg +++ b/tests/figs/histogram/histogram-vline.svg @@ -1 +1 @@ -23450246wtcount +23450246wtcount diff --git a/tests/figs/hline/hline-factor.svg b/tests/figs/hline/hline-factor.svg index 3fa9bf8365..c34acc57e4 100644 --- a/tests/figs/hline/hline-factor.svg +++ b/tests/figs/hline/hline-factor.svg @@ -1 +1 @@ -controltreatment0.02.55.07.510.012.5condresult +controltreatment0.02.55.07.510.012.5condresult diff --git a/tests/figs/hline/hline-multiple.svg b/tests/figs/hline/hline-multiple.svg index 640d460618..375db1aff0 100644 --- a/tests/figs/hline/hline-multiple.svg +++ b/tests/figs/hline/hline-multiple.svg @@ -1 +1 @@ -01230123xy +01230123xy diff --git a/tests/figs/hline/hline.svg b/tests/figs/hline/hline.svg index 630a6c9ded..6794bd335b 100644 --- a/tests/figs/hline/hline.svg +++ b/tests/figs/hline/hline.svg @@ -1 +1 @@ -01230123xy +01230123xy diff --git a/tests/figs/labels/labels-angles.svg b/tests/figs/labels/labels-angles.svg index b45e6ca617..19e329c6b8 100644 --- a/tests/figs/labels/labels-angles.svg +++ b/tests/figs/labels/labels-angles.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width +0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width diff --git a/tests/figs/labels/labels-ggtitle.svg b/tests/figs/labels/labels-ggtitle.svg index a1d392af3b..e9fe3b6128 100644 --- a/tests/figs/labels/labels-ggtitle.svg +++ b/tests/figs/labels/labels-ggtitle.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5My amazing plot!Petal.WidthSepal.Width +0.00.51.01.52.02.52.02.53.03.54.04.5My amazing plot!Petal.WidthSepal.Width diff --git a/tests/figs/labels/labels-ylab.svg b/tests/figs/labels/labels-ylab.svg index 4af8fc7be8..237d24c302 100644 --- a/tests/figs/labels/labels-ylab.svg +++ b/tests/figs/labels/labels-ylab.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5Petal.Widthsepal width +0.00.51.01.52.02.52.02.53.03.54.04.5Petal.Widthsepal width diff --git a/tests/figs/legends/legend-hide-legend.svg b/tests/figs/legends/legend-hide-legend.svg index 6312a38782..24373fdd7e 100644 --- a/tests/figs/legends/legend-hide-legend.svg +++ b/tests/figs/legends/legend-hide-legend.svg @@ -1 +1 @@ -56782.02.53.03.54.04.5Sepal.LengthSepal.Width +56782.02.53.03.54.04.5Sepal.LengthSepal.Width diff --git a/tests/figs/legends/legend-hide.svg b/tests/figs/legends/legend-hide.svg index 0eb320d4ef..dc2d561e8b 100644 --- a/tests/figs/legends/legend-hide.svg +++ b/tests/figs/legends/legend-hide.svg @@ -1 +1 @@ -1015202530352345mpgwt +1015202530352345mpgwt diff --git a/tests/figs/legends/legend-many-legend-items.svg b/tests/figs/legends/legend-many-legend-items.svg index fe0f47d1f5..d3340a3ebf 100644 --- a/tests/figs/legends/legend-many-legend-items.svg +++ b/tests/figs/legends/legend-many-legend-items.svg @@ -1 +1 @@ -AARAAUAHRAHUALRALUHARHAUHHRHHUHLRHLULARLAULHRLHU050100150200AARAAUAHRAHUALRALUHARHAUHHRHHUHLRHLULARLAULHRLHUcategorycountcategory +AARAAUAHRAHUALRALUHARHAUHHRHHUHLRHLULARLAULHRLHU050100150200AARAAUAHRAHUALRALUHARHAUHHRHHUHLRHLULARLAULHRLHUcategorycountcategory diff --git a/tests/figs/legends/legend-one-entry.svg b/tests/figs/legends/legend-one-entry.svg index c7959ef188..8ee5c977a9 100644 --- a/tests/figs/legends/legend-one-entry.svg +++ b/tests/figs/legends/legend-one-entry.svg @@ -1 +1 @@ -56782.02.53.03.54.04.5All speciesSepal.LengthSepal.WidthAll +56782.02.53.03.54.04.5All speciesSepal.LengthSepal.WidthAll diff --git a/tests/figs/legends/legend-very-long-legend-items.svg b/tests/figs/legends/legend-very-long-legend-items.svg index 9e8511a982..caa962994d 100644 --- a/tests/figs/legends/legend-very-long-legend-items.svg +++ b/tests/figs/legends/legend-very-long-legend-items.svg @@ -1 +1 @@ -ABCDEFGHIJ0.02.55.07.5AAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCcat1countcat2 +ABCDEFGHIJ0.02.55.07.5AAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCcat1countcat2 diff --git a/tests/figs/legends/scatter-legend.svg b/tests/figs/legends/scatter-legend.svg index 2e27a8c29e..20ff19c031 100644 --- a/tests/figs/legends/scatter-legend.svg +++ b/tests/figs/legends/scatter-legend.svg @@ -1 +1 @@ -1015202530352345(0,4)(0,6)(0,8)(1,4)(1,6)mpgwtfactor(vs)factor(cyl) +1015202530352345(0,4)(0,6)(0,8)(1,4)(1,6)mpgwtfactor(vs)factor(cyl) diff --git a/tests/figs/lines/linetype-colors.svg b/tests/figs/lines/linetype-colors.svg index 45d75501b9..b56f6a2d65 100644 --- a/tests/figs/lines/linetype-colors.svg +++ b/tests/figs/lines/linetype-colors.svg @@ -1 +1 @@ --2-10120.000.250.500.751.00y1y2xvaluevariable +-2-10120.000.250.500.751.00y1y2xvaluevariable diff --git a/tests/figs/lines/linetype-types.svg b/tests/figs/lines/linetype-types.svg index bbf0a7632a..31c9cffcc4 100644 --- a/tests/figs/lines/linetype-types.svg +++ b/tests/figs/lines/linetype-types.svg @@ -1 +1 @@ -246246123456xyas.factor(x) +246246123456xyas.factor(x) diff --git a/tests/figs/maps/map-facet.svg b/tests/figs/maps/map-facet.svg index 92963c6c92..864cee2fc9 100644 --- a/tests/figs/maps/map-facet.svg +++ b/tests/figs/maps/map-facet.svg @@ -1 +1 @@ -253035404550-120-100-80253035404550-120-100-80100200300valuexyAssaultMurderRapeUrbanPop +253035404550-120-100-80253035404550-120-100-80100200300valuexyAssaultMurderRapeUrbanPop diff --git a/tests/figs/means-and-error-bars/error-rect-alpha.svg b/tests/figs/means-and-error-bars/error-rect-alpha.svg index 29f59ff1c0..f3515a7f52 100644 --- a/tests/figs/means-and-error-bars/error-rect-alpha.svg +++ b/tests/figs/means-and-error-bars/error-rect-alpha.svg @@ -1 +1 @@ -024612345onetwoxygroup +024612345onetwoxygroup diff --git a/tests/figs/means-and-error-bars/error-simple-line-point-crazy.svg b/tests/figs/means-and-error-bars/error-simple-line-point-crazy.svg index 1ad295e963..fd410191b8 100644 --- a/tests/figs/means-and-error-bars/error-simple-line-point-crazy.svg +++ b/tests/figs/means-and-error-bars/error-simple-line-point-crazy.svg @@ -1 +1 @@ -12341234xy +12341234xy diff --git a/tests/figs/means-and-error-bars/error-simple-line-point.svg b/tests/figs/means-and-error-bars/error-simple-line-point.svg index 0067f71d80..2266b8aef6 100644 --- a/tests/figs/means-and-error-bars/error-simple-line-point.svg +++ b/tests/figs/means-and-error-bars/error-simple-line-point.svg @@ -1 +1 @@ -12341234xy +12341234xy diff --git a/tests/figs/means-and-error-bars/error-simple-line.svg b/tests/figs/means-and-error-bars/error-simple-line.svg index 6fcf9ba076..fb0fcdab83 100644 --- a/tests/figs/means-and-error-bars/error-simple-line.svg +++ b/tests/figs/means-and-error-bars/error-simple-line.svg @@ -1 +1 @@ -12341234xy +12341234xy diff --git a/tests/figs/means-and-error-bars/error-simple.svg b/tests/figs/means-and-error-bars/error-simple.svg index 9f3dbd1b58..56996c37f7 100644 --- a/tests/figs/means-and-error-bars/error-simple.svg +++ b/tests/figs/means-and-error-bars/error-simple.svg @@ -1 +1 @@ -12341234xy +12341234xy diff --git a/tests/figs/path/path-colored-groups-stay-together.svg b/tests/figs/path/path-colored-groups-stay-together.svg index 5e1da1e79f..9c9b230e94 100644 --- a/tests/figs/path/path-colored-groups-stay-together.svg +++ b/tests/figs/path/path-colored-groups-stay-together.svg @@ -1 +1 @@ --2-1012-2-1012positivenegativexyg +-2-1012-2-1012positivenegativexyg diff --git a/tests/figs/path/path-colors.svg b/tests/figs/path/path-colors.svg index fe24974511..0a349c8f7e 100644 --- a/tests/figs/path/path-colors.svg +++ b/tests/figs/path/path-colors.svg @@ -1 +1 @@ -1.001.251.501.752.001.001.251.501.752.001.001.251.501.752.00yxy +1.001.251.501.752.001.001.251.501.752.001.001.251.501.752.00yxy diff --git a/tests/figs/path/path-colors2.svg b/tests/figs/path/path-colors2.svg index 0fc11c6879..b46f365460 100644 --- a/tests/figs/path/path-colors2.svg +++ b/tests/figs/path/path-colors2.svg @@ -1 +1 @@ -1.001.251.501.752.001.001.251.501.752.00FOO1FOO2xypaste0("FOO", y) +1.001.251.501.752.001.001.251.501.752.00FOO1FOO2xypaste0("FOO", y) diff --git a/tests/figs/path/path-line-symbols.svg b/tests/figs/path/path-line-symbols.svg index 8adb5af80c..ccd1479e4a 100644 --- a/tests/figs/path/path-line-symbols.svg +++ b/tests/figs/path/path-line-symbols.svg @@ -1 +1 @@ -LunchDinner14151617FemaleMaletimetotal_billsex +LunchDinner14151617FemaleMaletimetotal_billsex diff --git a/tests/figs/path/path-lines-diff-from-paths.svg b/tests/figs/path/path-lines-diff-from-paths.svg index c2fd9b0f63..f1869368ff 100644 --- a/tests/figs/path/path-lines-diff-from-paths.svg +++ b/tests/figs/path/path-lines-diff-from-paths.svg @@ -1 +1 @@ -1.01.52.02.53.00.000.250.500.751.00xy +1.01.52.02.53.00.000.250.500.751.00xy diff --git a/tests/figs/plotly-color/plotly-color-bar-color-factor-custom.svg b/tests/figs/plotly-color/plotly-color-bar-color-factor-custom.svg index 4dcb76c99f..e7a2848503 100644 --- a/tests/figs/plotly-color/plotly-color-bar-color-factor-custom.svg +++ b/tests/figs/plotly-color/plotly-color-bar-color-factor-custom.svg @@ -1 +1 @@ -ABCDE012345ABCDECategoryValue +ABCDE012345ABCDECategoryValue diff --git a/tests/figs/plotly-color/plotly-color-color-manual.svg b/tests/figs/plotly-color/plotly-color-color-manual.svg index 39f120bbff..660107cf2e 100644 --- a/tests/figs/plotly-color/plotly-color-color-manual.svg +++ b/tests/figs/plotly-color/plotly-color-color-manual.svg @@ -1 +1 @@ -1015202530355010015020025030035040045001mpgdisp +1015202530355010015020025030035040045001mpgdisp diff --git a/tests/figs/plotly-color/plotly-color-scatterplot-color-factor-custom.svg b/tests/figs/plotly-color/plotly-color-scatterplot-color-factor-custom.svg index d385eddc79..67ab5beb03 100644 --- a/tests/figs/plotly-color/plotly-color-scatterplot-color-factor-custom.svg +++ b/tests/figs/plotly-color/plotly-color-scatterplot-color-factor-custom.svg @@ -1 +1 @@ -56781234567setosaversicolorvirginicaSepal.LengthPetal.Length +56781234567setosaversicolorvirginicaSepal.LengthPetal.Length diff --git a/tests/figs/plotly-color/plotly-color-scatterplot-color-factor-custom2.svg b/tests/figs/plotly-color/plotly-color-scatterplot-color-factor-custom2.svg index 07c74b3ba2..643378d526 100644 --- a/tests/figs/plotly-color/plotly-color-scatterplot-color-factor-custom2.svg +++ b/tests/figs/plotly-color/plotly-color-scatterplot-color-factor-custom2.svg @@ -1 +1 @@ -56781234567setosaversicolorvirginicaSepal.LengthPetal.Length +56781234567setosaversicolorvirginicaSepal.LengthPetal.Length diff --git a/tests/figs/plotly-color/plotly-color-scatterplot-color-factor.svg b/tests/figs/plotly-color/plotly-color-scatterplot-color-factor.svg index 0615eb99bf..355f4bec7d 100644 --- a/tests/figs/plotly-color/plotly-color-scatterplot-color-factor.svg +++ b/tests/figs/plotly-color/plotly-color-scatterplot-color-factor.svg @@ -1 +1 @@ -56781234567setosaversicolorvirginicaSepal.LengthPetal.Length +56781234567setosaversicolorvirginicaSepal.LengthPetal.Length diff --git a/tests/figs/plotly-color/plotly-color-scatterplot-color-numeric-custom.svg b/tests/figs/plotly-color/plotly-color-scatterplot-color-numeric-custom.svg index 19f8625986..f97f69fdc8 100644 --- a/tests/figs/plotly-color/plotly-color-scatterplot-color-numeric-custom.svg +++ b/tests/figs/plotly-color/plotly-color-scatterplot-color-numeric-custom.svg @@ -1 +1 @@ -567812345670.511.522.5Petal.WidthSepal.LengthPetal.Length +567812345670.511.522.5Petal.WidthSepal.LengthPetal.Length diff --git a/tests/figs/plotly-color/plotly-color-scatterplot-color-numeric.svg b/tests/figs/plotly-color/plotly-color-scatterplot-color-numeric.svg index 0f2fc64fbb..4e9af43eda 100644 --- a/tests/figs/plotly-color/plotly-color-scatterplot-color-numeric.svg +++ b/tests/figs/plotly-color/plotly-color-scatterplot-color-numeric.svg @@ -1 +1 @@ -567812345670.511.522.5Petal.WidthSepal.LengthPetal.Length +567812345670.511.522.5Petal.WidthSepal.LengthPetal.Length diff --git a/tests/figs/plotly-group/plotly-nas-connect.svg b/tests/figs/plotly-group/plotly-nas-connect.svg index babb50c244..0640b65010 100644 --- a/tests/figs/plotly-group/plotly-nas-connect.svg +++ b/tests/figs/plotly-group/plotly-nas-connect.svg @@ -1 +1 @@ -1970198019902000201002k4k6k8k10k12kdatepce +1970198019902000201002k4k6k8k10k12kdatepce diff --git a/tests/figs/plotly-group/plotly-nas-within-color.svg b/tests/figs/plotly-group/plotly-nas-within-color.svg index 1f3825d74f..0cccfd4dce 100644 --- a/tests/figs/plotly-group/plotly-nas-within-color.svg +++ b/tests/figs/plotly-group/plotly-nas-within-color.svg @@ -1 +1 @@ -19701980199020002010050k100k150k200k250k300kpcepoppsavertuempmedunemploydatevalue +19701980199020002010050k100k150k200k250k300kpcepoppsavertuempmedunemploydatevalue diff --git a/tests/figs/plotly-group/plotly-nas-within-color2.svg b/tests/figs/plotly-group/plotly-nas-within-color2.svg index e3fd447351..07b854100d 100644 --- a/tests/figs/plotly-group/plotly-nas-within-color2.svg +++ b/tests/figs/plotly-group/plotly-nas-within-color2.svg @@ -1 +1 @@ -19701980199020002010050k100k150k200k250k300kpcepoppsavertuempmedunemploydatevalue +19701980199020002010050k100k150k200k250k300kpcepoppsavertuempmedunemploydatevalue diff --git a/tests/figs/plotly-group/plotly-nas-within-group.svg b/tests/figs/plotly-group/plotly-nas-within-group.svg index 117b639662..6b314c3543 100644 --- a/tests/figs/plotly-group/plotly-nas-within-group.svg +++ b/tests/figs/plotly-group/plotly-nas-within-group.svg @@ -1 +1 @@ -19701980199020002010050k100k150k200k250k300kdatevalue +19701980199020002010050k100k150k200k250k300kdatevalue diff --git a/tests/figs/plotly-group/plotly-nas.svg b/tests/figs/plotly-group/plotly-nas.svg index b34f493ca8..d86ad55721 100644 --- a/tests/figs/plotly-group/plotly-nas.svg +++ b/tests/figs/plotly-group/plotly-nas.svg @@ -1 +1 @@ -1970198019902000201002k4k6k8k10k12kdatepce +1970198019902000201002k4k6k8k10k12kdatepce diff --git a/tests/figs/plotly-group/plotly-no-nas-for-irrelevant-group.svg b/tests/figs/plotly-group/plotly-no-nas-for-irrelevant-group.svg index 489e441ca9..bca4f00222 100644 --- a/tests/figs/plotly-group/plotly-no-nas-for-irrelevant-group.svg +++ b/tests/figs/plotly-group/plotly-no-nas-for-irrelevant-group.svg @@ -1 +1 @@ -2345101520253035wtmpg +2345101520253035wtmpg diff --git a/tests/figs/plotly-linetype/plotly-linetype-alphabetical.svg b/tests/figs/plotly-linetype/plotly-linetype-alphabetical.svg index d93bfc8d82..f89e06d49b 100644 --- a/tests/figs/plotly-linetype/plotly-linetype-alphabetical.svg +++ b/tests/figs/plotly-linetype/plotly-linetype-alphabetical.svg @@ -1 +1 @@ -101520253035152025303540452seatercompactmidsizeminivanpickupsubcompactsuvctyhwy +101520253035152025303540452seatercompactmidsizeminivanpickupsubcompactsuvctyhwy diff --git a/tests/figs/plotly-linetype/plotly-linetype-linetype.svg b/tests/figs/plotly-linetype/plotly-linetype-linetype.svg index 1fd4218a59..dabc8cb685 100644 --- a/tests/figs/plotly-linetype/plotly-linetype-linetype.svg +++ b/tests/figs/plotly-linetype/plotly-linetype-linetype.svg @@ -1 +1 @@ -200020052010201550k100k150k200k250kAbileneAmarilloArlingtonAustinBay Areadatemedian +200020052010201550k100k150k200k250kAbileneAmarilloArlingtonAustinBay Areadatemedian diff --git a/tests/figs/plotly-linetype/plotly-linetype-linetype2.svg b/tests/figs/plotly-linetype/plotly-linetype-linetype2.svg index e26dc3aa43..ffb9e9fb7b 100644 --- a/tests/figs/plotly-linetype/plotly-linetype-linetype2.svg +++ b/tests/figs/plotly-linetype/plotly-linetype-linetype2.svg @@ -1 +1 @@ -200020052010201550k100k150k200k250kAbileneAmarilloArlingtonAustinBay Areadatemedian +200020052010201550k100k150k200k250kAbileneAmarilloArlingtonAustinBay Areadatemedian diff --git a/tests/figs/plotly-linetype/plotly-linetype-linetype3.svg b/tests/figs/plotly-linetype/plotly-linetype-linetype3.svg index 49520401f8..1b5358382c 100644 --- a/tests/figs/plotly-linetype/plotly-linetype-linetype3.svg +++ b/tests/figs/plotly-linetype/plotly-linetype-linetype3.svg @@ -1 +1 @@ -200020052010201550k100k150k200k250kdatemedian +200020052010201550k100k150k200k250kdatemedian diff --git a/tests/figs/plotly-linetype/plotly-linetype-manual.svg b/tests/figs/plotly-linetype/plotly-linetype-manual.svg index a86cfadf36..bade7ca8be 100644 --- a/tests/figs/plotly-linetype/plotly-linetype-manual.svg +++ b/tests/figs/plotly-linetype/plotly-linetype-manual.svg @@ -1 +1 @@ -1015202530355010015020025030035040045001mpgdisp +1015202530355010015020025030035040045001mpgdisp diff --git a/tests/figs/plotly-linetype/plotly-linetype-ordering.svg b/tests/figs/plotly-linetype/plotly-linetype-ordering.svg index bd691c2edc..9e3bab1759 100644 --- a/tests/figs/plotly-linetype/plotly-linetype-ordering.svg +++ b/tests/figs/plotly-linetype/plotly-linetype-ordering.svg @@ -1 +1 @@ -152025305010015020025030035040045010mpgdisp +152025305010015020025030035040045010mpgdisp diff --git a/tests/figs/plotly-symbol/plotly-symbol-alphabetical.svg b/tests/figs/plotly-symbol/plotly-symbol-alphabetical.svg index 67e6ae683f..984e23dc42 100644 --- a/tests/figs/plotly-symbol/plotly-symbol-alphabetical.svg +++ b/tests/figs/plotly-symbol/plotly-symbol-alphabetical.svg @@ -1 +1 @@ -10152025303510152025303540452seatercompactmidsizeminivanpickupsubcompactsuvctyhwy +10152025303510152025303540452seatercompactmidsizeminivanpickupsubcompactsuvctyhwy diff --git a/tests/figs/plotly-symbol/plotly-symbol-logical.svg b/tests/figs/plotly-symbol/plotly-symbol-logical.svg index 65c0809336..a90f2b2dcb 100644 --- a/tests/figs/plotly-symbol/plotly-symbol-logical.svg +++ b/tests/figs/plotly-symbol/plotly-symbol-logical.svg @@ -1 +1 @@ -246810246810FALSETRUE +246810246810FALSETRUE diff --git a/tests/figs/plotly-symbol/plotly-symbol-ordering.svg b/tests/figs/plotly-symbol/plotly-symbol-ordering.svg index c83e702a18..b5892ee097 100644 --- a/tests/figs/plotly-symbol/plotly-symbol-ordering.svg +++ b/tests/figs/plotly-symbol/plotly-symbol-ordering.svg @@ -1 +1 @@ -1015202530355010015020025030035040045010mpgdisp +1015202530355010015020025030035040045010mpgdisp diff --git a/tests/figs/plotly-symbol/plotly-symbol-pch.svg b/tests/figs/plotly-symbol/plotly-symbol-pch.svg index 5ae674971d..5338cb73a3 100644 --- a/tests/figs/plotly-symbol/plotly-symbol-pch.svg +++ b/tests/figs/plotly-symbol/plotly-symbol-pch.svg @@ -1 +1 @@ -05101520250510152025 +05101520250510152025 diff --git a/tests/figs/plotly-symbol/plotly-symbol-scatterplot-symbol.svg b/tests/figs/plotly-symbol/plotly-symbol-scatterplot-symbol.svg index 20701b61cf..ef5b7f61a4 100644 --- a/tests/figs/plotly-symbol/plotly-symbol-scatterplot-symbol.svg +++ b/tests/figs/plotly-symbol/plotly-symbol-scatterplot-symbol.svg @@ -1 +1 @@ -56781234567setosaversicolorvirginicaSepal.LengthPetal.Length +56781234567setosaversicolorvirginicaSepal.LengthPetal.Length diff --git a/tests/figs/plotly-symbol/plotly-symbol-scatterplot-symbol2.svg b/tests/figs/plotly-symbol/plotly-symbol-scatterplot-symbol2.svg index ff04ede35f..b1175b691c 100644 --- a/tests/figs/plotly-symbol/plotly-symbol-scatterplot-symbol2.svg +++ b/tests/figs/plotly-symbol/plotly-symbol-scatterplot-symbol2.svg @@ -1 +1 @@ -56781234567setosaversicolorvirginicaSepal.LengthPetal.Length +56781234567setosaversicolorvirginicaSepal.LengthPetal.Length diff --git a/tests/figs/plotly-symbol/plotly-symbol-symbol-manual.svg b/tests/figs/plotly-symbol/plotly-symbol-symbol-manual.svg index d499de46c0..8abc695041 100644 --- a/tests/figs/plotly-symbol/plotly-symbol-symbol-manual.svg +++ b/tests/figs/plotly-symbol/plotly-symbol-symbol-manual.svg @@ -1 +1 @@ -1015202530355010015020025030035040045001mpgdisp +1015202530355010015020025030035040045001mpgdisp diff --git a/tests/figs/plotly/plotly-alpha-blending.svg b/tests/figs/plotly/plotly-alpha-blending.svg index 04fb551332..2510a576d5 100644 --- a/tests/figs/plotly/plotly-alpha-blending.svg +++ b/tests/figs/plotly/plotly-alpha-blending.svg @@ -1 +1 @@ -−3−2−1012−2−10123trace 0trace 1−202rnorm(100) +−3−2−1012−2−10123trace 0trace 1−202rnorm(100) diff --git a/tests/figs/plotly/plotly-alpha-no-color.svg b/tests/figs/plotly/plotly-alpha-no-color.svg index 5b79b77d42..21e8a86a44 100644 --- a/tests/figs/plotly/plotly-alpha-no-color.svg +++ b/tests/figs/plotly/plotly-alpha-no-color.svg @@ -1 +1 @@ -10152025303550100150200250300350400450mpgdisp +10152025303550100150200250300350400450mpgdisp diff --git a/tests/figs/plotly/plotly-bar-inference.svg b/tests/figs/plotly/plotly-bar-inference.svg index a388a01600..89d167c1e0 100644 --- a/tests/figs/plotly/plotly-bar-inference.svg +++ b/tests/figs/plotly/plotly-bar-inference.svg @@ -1 +1 @@ -setosaversicolorvirginica01020304050trace 0trace 1Species +setosaversicolorvirginica01020304050trace 0trace 1Species diff --git a/tests/figs/plotly/plotly-character-axis.svg b/tests/figs/plotly/plotly-character-axis.svg index 00b71c7101..34bab18950 100644 --- a/tests/figs/plotly/plotly-character-axis.svg +++ b/tests/figs/plotly/plotly-character-axis.svg @@ -1 +1 @@ -ABCDEFGHIJKLMNOPQRSTUVWXYZ0510152025a1a2 +ABCDEFGHIJKLMNOPQRSTUVWXYZ0510152025a1a2 diff --git a/tests/figs/plotly/plotly-factor-axis.svg b/tests/figs/plotly/plotly-factor-axis.svg index 11f791158f..1cbc188566 100644 --- a/tests/figs/plotly/plotly-factor-axis.svg +++ b/tests/figs/plotly/plotly-factor-axis.svg @@ -1 +1 @@ -12481632123456 +12481632123456 diff --git a/tests/figs/plotly/plotly-group-within-trace.svg b/tests/figs/plotly/plotly-group-within-trace.svg index 8a147db64f..9d10f24f37 100644 --- a/tests/figs/plotly/plotly-group-within-trace.svg +++ b/tests/figs/plotly/plotly-group-within-trace.svg @@ -1 +1 @@ -11.21.41.61.82−1.5−1−0.500.511.52ABvisitresponse +11.21.41.61.82−1.5−1−0.500.511.52ABvisitresponse diff --git a/tests/figs/plotly/plotly-histogram-vert.svg b/tests/figs/plotly/plotly-histogram-vert.svg index add901f2e1..1ee0fbee00 100644 --- a/tests/figs/plotly/plotly-histogram-vert.svg +++ b/tests/figs/plotly/plotly-histogram-vert.svg @@ -1 +1 @@ -05101520−3−2−1012 +05101520−3−2−1012 diff --git a/tests/figs/plotly/plotly-histogram.svg b/tests/figs/plotly/plotly-histogram.svg index 2584af78a5..150d12843e 100644 --- a/tests/figs/plotly/plotly-histogram.svg +++ b/tests/figs/plotly/plotly-histogram.svg @@ -1 +1 @@ -−3−2−101205101520 +−3−2−101205101520 diff --git a/tests/figs/plotly/plotly-inherit-false.svg b/tests/figs/plotly/plotly-inherit-false.svg index c8edc0a6e5..3da0b259c4 100644 --- a/tests/figs/plotly/plotly-inherit-false.svg +++ b/tests/figs/plotly/plotly-inherit-false.svg @@ -1 +1 @@ -01024681012141618factor(vs) +01024681012141618factor(vs) diff --git a/tests/figs/plotly/plotly-scatterplot.svg b/tests/figs/plotly/plotly-scatterplot.svg index 4228e5049f..7620eb277e 100644 --- a/tests/figs/plotly/plotly-scatterplot.svg +++ b/tests/figs/plotly/plotly-scatterplot.svg @@ -1 +1 @@ -4.555.566.577.581234567Sepal.LengthPetal.Length +4.555.566.577.581234567Sepal.LengthPetal.Length diff --git a/tests/figs/plotly/plotly-time-series-summary.svg b/tests/figs/plotly/plotly-time-series-summary.svg index 224e9f4067..b77617ab07 100644 --- a/tests/figs/plotly/plotly-time-series-summary.svg +++ b/tests/figs/plotly/plotly-time-series-summary.svg @@ -1 +1 @@ -200020052010201550k100k150k200k250k300kTexan CitiesmedianIQRdatemedian +200020052010201550k100k150k200k250k300kTexan CitiesmedianIQRdatemedian diff --git a/tests/figs/polygon/polygon-aes-color.svg b/tests/figs/polygon/polygon-aes-color.svg index 2c725ab34b..660f2b6003 100644 --- a/tests/figs/polygon/polygon-aes-color.svg +++ b/tests/figs/polygon/polygon-aes-color.svg @@ -1 +1 @@ -101112130.000.250.500.751.00leftrightxylab +101112130.000.250.500.751.00leftrightxylab diff --git a/tests/figs/polygon/polygon-aes-fill.svg b/tests/figs/polygon/polygon-aes-fill.svg index 4de0f720fd..163a971ce3 100644 --- a/tests/figs/polygon/polygon-aes-fill.svg +++ b/tests/figs/polygon/polygon-aes-fill.svg @@ -1 +1 @@ -101112130.000.250.500.751.00leftrightxylab +101112130.000.250.500.751.00leftrightxylab diff --git a/tests/figs/polygon/polygon-black.svg b/tests/figs/polygon/polygon-black.svg index e784dcf1d3..363610cad6 100644 --- a/tests/figs/polygon/polygon-black.svg +++ b/tests/figs/polygon/polygon-black.svg @@ -1 +1 @@ -101112130.000.250.500.751.00xy +101112130.000.250.500.751.00xy diff --git a/tests/figs/polygon/polygon-color-aes-fill.svg b/tests/figs/polygon/polygon-color-aes-fill.svg index 090b9cdff4..7fa28c637e 100644 --- a/tests/figs/polygon/polygon-color-aes-fill.svg +++ b/tests/figs/polygon/polygon-color-aes-fill.svg @@ -1 +1 @@ -101112130.000.250.500.751.00leftrightxylab +101112130.000.250.500.751.00leftrightxylab diff --git a/tests/figs/polygon/polygon-color-fill-aes-linetype.svg b/tests/figs/polygon/polygon-color-fill-aes-linetype.svg index 3d04cb7541..3161da3539 100644 --- a/tests/figs/polygon/polygon-color-fill-aes-linetype.svg +++ b/tests/figs/polygon/polygon-color-fill-aes-linetype.svg @@ -1 +1 @@ -101112130.000.250.500.751.00leftrightxylab +101112130.000.250.500.751.00leftrightxylab diff --git a/tests/figs/polygon/polygon-color-fill-aes-size.svg b/tests/figs/polygon/polygon-color-fill-aes-size.svg index 55b5c87cc3..9385d355d6 100644 --- a/tests/figs/polygon/polygon-color-fill-aes-size.svg +++ b/tests/figs/polygon/polygon-color-fill-aes-size.svg @@ -1 +1 @@ -101112130.000.250.500.751.00leftrightxylab +101112130.000.250.500.751.00leftrightxylab diff --git a/tests/figs/polygon/polygon-star-fill-color.svg b/tests/figs/polygon/polygon-star-fill-color.svg index 6a08801b58..12472dc864 100644 --- a/tests/figs/polygon/polygon-star-fill-color.svg +++ b/tests/figs/polygon/polygon-star-fill-color.svg @@ -1 +1 @@ -048120.00.51.01.52.0leftrightxygroup +048120.00.51.01.52.0leftrightxygroup diff --git a/tests/figs/polygon/polygon-star-group-color.svg b/tests/figs/polygon/polygon-star-group-color.svg index 72519cd8ed..4fd536ea57 100644 --- a/tests/figs/polygon/polygon-star-group-color.svg +++ b/tests/figs/polygon/polygon-star-group-color.svg @@ -1 +1 @@ -048120.00.51.01.52.0xy +048120.00.51.01.52.0xy diff --git a/tests/figs/polygon/polygon-star-group.svg b/tests/figs/polygon/polygon-star-group.svg index 744bee6495..e7582adc98 100644 --- a/tests/figs/polygon/polygon-star-group.svg +++ b/tests/figs/polygon/polygon-star-group.svg @@ -1 +1 @@ -048120.00.51.01.52.0xy +048120.00.51.01.52.0xy diff --git a/tests/figs/polygon/polygons-canada-borders.svg b/tests/figs/polygon/polygons-canada-borders.svg index 1661e6b82e..5c3365db8f 100644 --- a/tests/figs/polygon/polygons-canada-borders.svg +++ b/tests/figs/polygon/polygons-canada-borders.svg @@ -1 +1 @@ --125-100-75-504050607080longlat +-125-100-75-504050607080longlat diff --git a/tests/figs/probability-density/density-color.svg b/tests/figs/probability-density/density-color.svg index 91734f0dc8..d051a8e0a1 100644 --- a/tests/figs/probability-density/density-color.svg +++ b/tests/figs/probability-density/density-color.svg @@ -1 +1 @@ -23450.00.20.40.601wtdensityfactor(vs) +23450.00.20.40.601wtdensityfactor(vs) diff --git a/tests/figs/probability-density/density-fill.svg b/tests/figs/probability-density/density-fill.svg index 62c50319f7..82ed81f09c 100644 --- a/tests/figs/probability-density/density-fill.svg +++ b/tests/figs/probability-density/density-fill.svg @@ -1 +1 @@ -23450.00.20.40.601wtdensityfactor(vs) +23450.00.20.40.601wtdensityfactor(vs) diff --git a/tests/figs/probability-density/density-histogram.svg b/tests/figs/probability-density/density-histogram.svg index 22cd0a08a6..8ff86e598d 100644 --- a/tests/figs/probability-density/density-histogram.svg +++ b/tests/figs/probability-density/density-histogram.svg @@ -1 +1 @@ -23450.00.20.4wtdensity +23450.00.20.4wtdensity diff --git a/tests/figs/probability-density/density-simple.svg b/tests/figs/probability-density/density-simple.svg index 00fbffaeb9..f0446825b6 100644 --- a/tests/figs/probability-density/density-simple.svg +++ b/tests/figs/probability-density/density-simple.svg @@ -1 +1 @@ -23450.00.10.20.30.40.5wtdensity +23450.00.10.20.30.40.5wtdensity diff --git a/tests/figs/probability-density/density-traces-order.svg b/tests/figs/probability-density/density-traces-order.svg index 9466345fc0..fe87397cce 100644 --- a/tests/figs/probability-density/density-traces-order.svg +++ b/tests/figs/probability-density/density-traces-order.svg @@ -1 +1 @@ -1015202530350.00.10.20.3468mpgdensityfactor(cyl) +1015202530350.00.10.20.3468mpgdensityfactor(cyl) diff --git a/tests/figs/ribbon/ribbon-alpha.svg b/tests/figs/ribbon/ribbon-alpha.svg index 41fa20bee3..e6d693760a 100644 --- a/tests/figs/ribbon/ribbon-alpha.svg +++ b/tests/figs/ribbon/ribbon-alpha.svg @@ -1 +1 @@ -18751900192519501975575.0577.5580.0582.5year +18751900192519501975575.0577.5580.0582.5year diff --git a/tests/figs/ribbon/ribbon-colour.svg b/tests/figs/ribbon/ribbon-colour.svg index c8ae4f3678..4f6c297867 100644 --- a/tests/figs/ribbon/ribbon-colour.svg +++ b/tests/figs/ribbon/ribbon-colour.svg @@ -1 +1 @@ --5.0-2.50.02.55.05765785805821880189019001910192019301940195019601970difffactor(decade) +-5.0-2.50.02.55.05765785805821880189019001910192019301940195019601970difffactor(decade) diff --git a/tests/figs/ribbon/ribbon-fill.svg b/tests/figs/ribbon/ribbon-fill.svg index 367d78bcd7..e487a62289 100644 --- a/tests/figs/ribbon/ribbon-fill.svg +++ b/tests/figs/ribbon/ribbon-fill.svg @@ -1 +1 @@ --5.0-2.50.02.55.05765785805821880189019001910192019301940195019601970difffactor(decade) +-5.0-2.50.02.55.05765785805821880189019001910192019301940195019601970difffactor(decade) diff --git a/tests/figs/ribbon/ribbon-group.svg b/tests/figs/ribbon/ribbon-group.svg index 905fac20d7..a3d59493a5 100644 --- a/tests/figs/ribbon/ribbon-group.svg +++ b/tests/figs/ribbon/ribbon-group.svg @@ -1 +1 @@ --5.0-2.50.02.55.0576578580582diff +-5.0-2.50.02.55.0576578580582diff diff --git a/tests/figs/segment/segment-multiple-non-numeric.svg b/tests/figs/segment/segment-multiple-non-numeric.svg index f157ae4c44..4e047469d0 100644 --- a/tests/figs/segment/segment-multiple-non-numeric.svg +++ b/tests/figs/segment/segment-multiple-non-numeric.svg @@ -1 +1 @@ -0.81.21.62.0901001101201301.001.251.501.752.00campaigncampaigndonation +0.81.21.62.0901001101201301.001.251.501.752.00campaigncampaigndonation diff --git a/tests/figs/segment/segment.svg b/tests/figs/segment/segment.svg index b0ab41a9be..3272ed870c 100644 --- a/tests/figs/segment/segment.svg +++ b/tests/figs/segment/segment.svg @@ -1 +1 @@ -0.000.250.500.751.000.000.250.500.751.00xy +0.000.250.500.751.000.000.250.500.751.00xy diff --git a/tests/figs/size/size-global-scaling.svg b/tests/figs/size/size-global-scaling.svg index ae77866907..4c84abe605 100644 --- a/tests/figs/size/size-global-scaling.svg +++ b/tests/figs/size/size-global-scaling.svg @@ -1 +1 @@ -2340.40.81.21.6ParaguayPeruPhilippineseduillncountrypopulation +2340.40.81.21.6ParaguayPeruPhilippineseduillncountrypopulation diff --git a/tests/figs/size/size-is-a-vector.svg b/tests/figs/size/size-is-a-vector.svg index b4e4cfc4ba..3dd8aad835 100644 --- a/tests/figs/size/size-is-a-vector.svg +++ b/tests/figs/size/size-is-a-vector.svg @@ -1 +1 @@ -0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width +0.00.51.01.52.02.52.02.53.03.54.04.5Petal.WidthSepal.Width diff --git a/tests/figs/smooth/smooth-basic.svg b/tests/figs/smooth/smooth-basic.svg index 827933e69b..6f8a35b941 100644 --- a/tests/figs/smooth/smooth-basic.svg +++ b/tests/figs/smooth/smooth-basic.svg @@ -1 +1 @@ -101520253035123456mpgwt +101520253035123456mpgwt diff --git a/tests/figs/smooth/smooth-colour.svg b/tests/figs/smooth/smooth-colour.svg index aef26b3f93..12266e66cf 100644 --- a/tests/figs/smooth/smooth-colour.svg +++ b/tests/figs/smooth/smooth-colour.svg @@ -1 +1 @@ -1205000100001500020000FairGoodVery GoodPremiumIdealcaratpricecut +1205000100001500020000FairGoodVery GoodPremiumIdealcaratpricecut diff --git a/tests/figs/smooth/smooth-facet.svg b/tests/figs/smooth/smooth-facet.svg index eeccefa52d..58139fb24d 100644 --- a/tests/figs/smooth/smooth-facet.svg +++ b/tests/figs/smooth/smooth-facet.svg @@ -1 +1 @@ -0500010000150002000012050001000015000200001212FairGoodVery GoodPremiumIdealcaratpriceFairGoodVery GoodPremiumIdealcut +0500010000150002000012050001000015000200001212FairGoodVery GoodPremiumIdealcaratpriceFairGoodVery GoodPremiumIdealcut diff --git a/tests/figs/smooth/smooth-fill2.svg b/tests/figs/smooth/smooth-fill2.svg index dacd290133..173cb88fce 100644 --- a/tests/figs/smooth/smooth-fill2.svg +++ b/tests/figs/smooth/smooth-fill2.svg @@ -1 +1 @@ -1205000100001500020000FairGoodVery GoodPremiumIdealcaratpricecut +1205000100001500020000FairGoodVery GoodPremiumIdealcaratpricecut diff --git a/tests/figs/smooth/smooth-group.svg b/tests/figs/smooth/smooth-group.svg index 37deaccc10..2d40f0db62 100644 --- a/tests/figs/smooth/smooth-group.svg +++ b/tests/figs/smooth/smooth-group.svg @@ -1 +1 @@ -1205000100001500020000caratprice +1205000100001500020000caratprice diff --git a/tests/figs/smooth/smooth-se-false.svg b/tests/figs/smooth/smooth-se-false.svg index 6c59af5046..45a4eff631 100644 --- a/tests/figs/smooth/smooth-se-false.svg +++ b/tests/figs/smooth/smooth-se-false.svg @@ -1 +1 @@ -1015202530352345mpgwt +1015202530352345mpgwt diff --git a/tests/figs/step/step-gg-hv.svg b/tests/figs/step/step-gg-hv.svg index 24b2330afc..a8bb7b1627 100644 --- a/tests/figs/step/step-gg-hv.svg +++ b/tests/figs/step/step-gg-hv.svg @@ -1 +1 @@ -400800120016005010015020012agecircumferencefactor(Tree) +400800120016005010015020012agecircumferencefactor(Tree) diff --git a/tests/figs/step/step-gg-hvh.svg b/tests/figs/step/step-gg-hvh.svg index e4d5ddfe7a..8a71f5a3ca 100644 --- a/tests/figs/step/step-gg-hvh.svg +++ b/tests/figs/step/step-gg-hvh.svg @@ -1 +1 @@ -400800120016005010015020012agecircumferencefactor(Tree) +400800120016005010015020012agecircumferencefactor(Tree) diff --git a/tests/figs/step/step-gg-vh.svg b/tests/figs/step/step-gg-vh.svg index 58a86fa7a1..a1fe3c011e 100644 --- a/tests/figs/step/step-gg-vh.svg +++ b/tests/figs/step/step-gg-vh.svg @@ -1 +1 @@ -400800120016005010015020012agecircumferencefactor(Tree) +400800120016005010015020012agecircumferencefactor(Tree) diff --git a/tests/figs/step/step-gg-vhv.svg b/tests/figs/step/step-gg-vhv.svg index 62d32ed75b..56ce455a78 100644 --- a/tests/figs/step/step-gg-vhv.svg +++ b/tests/figs/step/step-gg-vhv.svg @@ -1 +1 @@ -400800120016005010015020012agecircumferencefactor(Tree) +400800120016005010015020012agecircumferencefactor(Tree) diff --git a/tests/figs/subplot/plotly-subplot-geo-cartesian.svg b/tests/figs/subplot/plotly-subplot-geo-cartesian.svg index 83434ee888..0b514c6383 100644 --- a/tests/figs/subplot/plotly-subplot-geo-cartesian.svg +++ b/tests/figs/subplot/plotly-subplot-geo-cartesian.svg @@ -1 +1 @@ -05k10k15k20k0200040006000012020406005101502040600501001500200k400kPopulationIncomeIlliteracyLife ExpMurderHS GradFrostArea0.20.40.60.8density +05k10k15k20k0200040006000012020406005101502040600501001500200k400kPopulationIncomeIlliteracyLife ExpMurderHS GradFrostArea0.20.40.60.8density diff --git a/tests/figs/subplot/plotly-subplot-ggmatrix.svg b/tests/figs/subplot/plotly-subplot-ggmatrix.svg index e7b941eeeb..5af6039154 100644 --- a/tests/figs/subplot/plotly-subplot-ggmatrix.svg +++ b/tests/figs/subplot/plotly-subplot-ggmatrix.svg @@ -1,2490 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Corr: --0.118 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Corr: -0.872 - - - - - - - - - - - - - - - - - - - -Corr: --0.428 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Corr: -0.818 - - - - - - - - - - - - - - - - - - - - - - -Corr: --0.366 - - - - - - - - - - - - - - - - - - - -Corr: -0.963 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Sepal.Length - - - - - - - - - - - -Sepal.Width - - - - - - - - - - - -Petal.Length - - - - - - - - - - - -Petal.Width - - - - - - - - - - - -Species - - - - - - - - - - - -Sepal.Length - - - - - - - - - - - -Sepal.Width - - - - - - - - - - - -Petal.Length - - - - - - - - - - - -Petal.Width - - - - - - - - - - - -Species - - - - - - - - - -5 -6 -7 -8 - - - - - - -2.0 -2.5 -3.0 -3.5 -4.0 -4.5 - - - -2 -4 -6 - - - - - - -0.0 -0.5 -1.0 -1.5 -2.0 -2.5 - - - -setosa -versicolor -virginica -0.0 -0.1 -0.2 -0.3 -0.4 - - - - - -2.0 -2.5 -3.0 -3.5 -4.0 -4.5 - - - - - - -2 -4 -6 - - - -0.0 -0.5 -1.0 -1.5 -2.0 -2.5 - - - - - - -0.0 -2.5 -5.0 -7.5 - - - - -0.0 -2.5 -5.0 -7.5 - - - - -0.0 -2.5 -5.0 -7.5 - - - - - +0.02.55.07.50.02.55.07.556780.02.55.07.50.00.51.01.52.02.52462.02.53.03.54.04.50.00.10.20.30.42.02.53.03.54.04.5Corr:-0.118246Corr:-0.428Corr:0.8720.00.51.01.52.02.5Corr:0.963Corr:-0.366Corr:0.818setosaversicolorvirginicaSepal.LengthSepal.WidthPetal.LengthPetal.WidthSpeciesPetal.WidthPetal.LengthSepal.WidthSepal.Lengthsetosaversicolorvirginicasetosaversicolorvirginicasetosasetosaversicolorvirginicasetosaversicolorvirginicasetosasetosaversicolorvirginicasetosaversicolorvirginicasetosasetosaversicolorvirginicasetosaversicolorvirginicasetosa diff --git a/tests/figs/subplot/plotly-subplot-group.svg b/tests/figs/subplot/plotly-subplot-group.svg index 30dab7da01..3b0723b87d 100644 --- a/tests/figs/subplot/plotly-subplot-group.svg +++ b/tests/figs/subplot/plotly-subplot-group.svg @@ -1 +1 @@ -11.50.10.20.30.40.50.634511.11.21.31.41.51.61.71.85671.41.61.822.22.4setosaversicolorvirginica +11.50.10.20.30.40.50.634511.11.21.31.41.51.61.71.85671.41.61.822.22.4setosaversicolorvirginica diff --git a/tests/figs/subplot/plotly-subplot-plot-list.svg b/tests/figs/subplot/plotly-subplot-plot-list.svg index 61f7422709..5eb808bfba 100644 --- a/tests/figs/subplot/plotly-subplot-plot-list.svg +++ b/tests/figs/subplot/plotly-subplot-plot-list.svg @@ -1 +1 @@ -05k10k200k250k300k0510151020197019801990200020105k10k15kpcepoppsavertuempmedunemploy +05k10k200k250k300k0510151020197019801990200020105k10k15kpcepoppsavertuempmedunemploy diff --git a/tests/figs/subplot/plotly-subplot-recursive.svg b/tests/figs/subplot/plotly-subplot-recursive.svg index 8e2f1a767f..3dc5b7e55d 100644 --- a/tests/figs/subplot/plotly-subplot-recursive.svg +++ b/tests/figs/subplot/plotly-subplot-recursive.svg @@ -1 +1 @@ -5k10k15k1980200051015202519802000trace 0trace 1trace 2trace 3 +5k10k15k1980200051015202519802000trace 0trace 1trace 2trace 3 diff --git a/tests/figs/subplot/plotly-subplot-shareboth.svg b/tests/figs/subplot/plotly-subplot-shareboth.svg index 6aa9560f80..7b3378f29d 100644 --- a/tests/figs/subplot/plotly-subplot-shareboth.svg +++ b/tests/figs/subplot/plotly-subplot-shareboth.svg @@ -1 +1 @@ -00.20.40.60.810.511.500.20.40.60.810.511.5trace 0trace 1trace 2trace 3 +00.20.40.60.810.511.500.20.40.60.810.511.5trace 0trace 1trace 2trace 3 diff --git a/tests/figs/subplot/plotly-subplot-sharex.svg b/tests/figs/subplot/plotly-subplot-sharex.svg index 63e6f31db8..c817043400 100644 --- a/tests/figs/subplot/plotly-subplot-sharex.svg +++ b/tests/figs/subplot/plotly-subplot-sharex.svg @@ -1 +1 @@ -00.20.40.60.810.60.811.21.400.20.40.60.81trace 0trace 1 +00.20.40.60.810.60.811.21.400.20.40.60.81trace 0trace 1 diff --git a/tests/figs/subplot/plotly-subplot-sharey.svg b/tests/figs/subplot/plotly-subplot-sharey.svg index e02d3d22df..b8919b8052 100644 --- a/tests/figs/subplot/plotly-subplot-sharey.svg +++ b/tests/figs/subplot/plotly-subplot-sharey.svg @@ -1 +1 @@ -0.511.500.20.40.60.810.511.5trace 0trace 1 +0.511.500.20.40.60.810.511.5trace 0trace 1 diff --git a/tests/figs/subplot/plotly-subplot-simple.svg b/tests/figs/subplot/plotly-subplot-simple.svg index a8ae71cbc8..84776f11bf 100644 --- a/tests/figs/subplot/plotly-subplot-simple.svg +++ b/tests/figs/subplot/plotly-subplot-simple.svg @@ -1 +1 @@ -0.511.522.500.20.40.60.810.511.522.500.20.40.60.81trace 0trace 1 +0.511.522.500.20.40.60.810.511.522.500.20.40.60.81trace 0trace 1 diff --git a/tests/figs/subplot/plotly-subplot-simple2.svg b/tests/figs/subplot/plotly-subplot-simple2.svg index ca55941246..00d3c3460f 100644 --- a/tests/figs/subplot/plotly-subplot-simple2.svg +++ b/tests/figs/subplot/plotly-subplot-simple2.svg @@ -1 +1 @@ -0.511.522.500.20.40.60.810.511.522.500.20.40.60.81trace 0trace 1 +0.511.522.500.20.40.60.810.511.522.500.20.40.60.81trace 0trace 1 diff --git a/tests/figs/subplot/plotly-subplot-subplot-legendgroup.svg b/tests/figs/subplot/plotly-subplot-subplot-legendgroup.svg index 0374d7b4f9..07f5353cff 100644 --- a/tests/figs/subplot/plotly-subplot-subplot-legendgroup.svg +++ b/tests/figs/subplot/plotly-subplot-subplot-legendgroup.svg @@ -1 +1 @@ -0510−3−2−10123x1x2x3 +0510−3−2−10123x1x2x3 diff --git a/tests/figs/subplot/plotly-subplot-width-height.svg b/tests/figs/subplot/plotly-subplot-width-height.svg index 698a8c8a0b..257a8b2677 100644 --- a/tests/figs/subplot/plotly-subplot-width-height.svg +++ b/tests/figs/subplot/plotly-subplot-width-height.svg @@ -1 +1 @@ -0.02.55.07.5-3-2-1012-2020.02.55.07.510.0xcountcounty +0.02.55.07.5-3-2-1012-2020.02.55.07.510.0xcountcounty diff --git a/tests/figs/text/text-colour.svg b/tests/figs/text/text-colour.svg index 5ab82e2904..f0cc0a468e 100644 --- a/tests/figs/text/text-colour.svg +++ b/tests/figs/text/text-colour.svg @@ -1 +1 @@ -HUNTSVILLEMOBILEBIRMINGHAMMONTGOMERYTUCSONPEORIA01020-505AaEast South CentralAaMountaincoord.1coord.2Division +HUNTSVILLEMOBILEBIRMINGHAMMONTGOMERYTUCSONPEORIA01020-505AaEast South CentralAaMountaincoord.1coord.2Division diff --git a/tests/figs/text/text.svg b/tests/figs/text/text.svg index e7584285bf..6c60f54598 100644 --- a/tests/figs/text/text.svg +++ b/tests/figs/text/text.svg @@ -1 +1 @@ -Mazda RX4Mazda RX4 WagDatsun 710Hornet 4 DriveHornet SportaboutValiantDuster 360Merc 240DMerc 230Merc 280Merc 280CMerc 450SEMerc 450SLMerc 450SLCCadillac FleetwoodLincoln ContinentalChrysler ImperialFiat 128Honda CivicToyota CorollaToyota CoronaDodge ChallengerAMC JavelinCamaro Z28Pontiac FirebirdFiat X1-9Porsche 914-2Lotus EuropaFord Pantera LFerrari DinoMaserati BoraVolvo 142E2345101520253035wtmpg +Mazda RX4Mazda RX4 WagDatsun 710Hornet 4 DriveHornet SportaboutValiantDuster 360Merc 240DMerc 230Merc 280Merc 280CMerc 450SEMerc 450SLMerc 450SLCCadillac FleetwoodLincoln ContinentalChrysler ImperialFiat 128Honda CivicToyota CorollaToyota CoronaDodge ChallengerAMC JavelinCamaro Z28Pontiac FirebirdFiat X1-9Porsche 914-2Lotus EuropaFord Pantera LFerrari DinoMaserati BoraVolvo 142E2345101520253035wtmpg diff --git a/tests/figs/tooltip/group-lines-hovertext.svg b/tests/figs/tooltip/group-lines-hovertext.svg index 5c5f34627e..9b81b6d3ef 100644 --- a/tests/figs/tooltip/group-lines-hovertext.svg +++ b/tests/figs/tooltip/group-lines-hovertext.svg @@ -1 +1 @@ -20002005201020151e+052e+053e+05datemedian +20002005201020151e+052e+053e+05datemedian diff --git a/tests/figs/tooltip/heatmap-discrete-tooltip.svg b/tests/figs/tooltip/heatmap-discrete-tooltip.svg index 2bc5246b9d..17ae31d246 100644 --- a/tests/figs/tooltip/heatmap-discrete-tooltip.svg +++ b/tests/figs/tooltip/heatmap-discrete-tooltip.svg @@ -1 +1 @@ -1020304680.20.40.6densitympgfactor(cyl) +1020304680.20.40.6densitympgfactor(cyl) diff --git a/tests/figs/tooltip/hovertext-display.svg b/tests/figs/tooltip/hovertext-display.svg index 5c5f34627e..9b81b6d3ef 100644 --- a/tests/figs/tooltip/hovertext-display.svg +++ b/tests/figs/tooltip/hovertext-display.svg @@ -1 +1 @@ -20002005201020151e+052e+053e+05datemedian +20002005201020151e+052e+053e+05datemedian diff --git a/tests/figs/tooltip/tooltip-date.svg b/tests/figs/tooltip/tooltip-date.svg index 08ffb0af1b..0c297ab962 100644 --- a/tests/figs/tooltip/tooltip-date.svg +++ b/tests/figs/tooltip/tooltip-date.svg @@ -1 +1 @@ -00:00:0000:00:3000:01:0000:01:30-1.0-0.50.00.51.0timex +00:00:0000:00:3000:01:0000:01:30-1.0-0.50.00.51.0timex diff --git a/tests/figs/tooltip/tooltip-datetime.svg b/tests/figs/tooltip/tooltip-datetime.svg index 00aef815d0..d11443e5d3 100644 --- a/tests/figs/tooltip/tooltip-datetime.svg +++ b/tests/figs/tooltip/tooltip-datetime.svg @@ -1 +1 @@ -16:3017:0017:3018:00-1.0-0.50.00.51.0timex +16:3017:0017:3018:00-1.0-0.50.00.51.0timex diff --git a/tests/figs/violin/violin-aes.svg b/tests/figs/violin/violin-aes.svg index b789b39174..e50a3772bb 100644 --- a/tests/figs/violin/violin-aes.svg +++ b/tests/figs/violin/violin-aes.svg @@ -1 +1 @@ -468101520253035468factor(cyl)mpgfactor(cyl) +468101520253035468factor(cyl)mpgfactor(cyl) diff --git a/tests/figs/violin/violin.svg b/tests/figs/violin/violin.svg index f5bf8b376c..5fd23bd26c 100644 --- a/tests/figs/violin/violin.svg +++ b/tests/figs/violin/violin.svg @@ -1 +1 @@ -468101520253035factor(cyl)mpg +468101520253035factor(cyl)mpg diff --git a/tests/figs/vline/vline-multiple.svg b/tests/figs/vline/vline-multiple.svg index f52a5635d4..f092522254 100644 --- a/tests/figs/vline/vline-multiple.svg +++ b/tests/figs/vline/vline-multiple.svg @@ -1 +1 @@ -01230123xy +01230123xy diff --git a/tests/figs/vline/vline.svg b/tests/figs/vline/vline.svg index 146e8e2df7..05c80b0608 100644 --- a/tests/figs/vline/vline.svg +++ b/tests/figs/vline/vline.svg @@ -1 +1 @@ -01230123xy +01230123xy From ed2da6c72af9337bf10ea52443232c644b29c3e2 Mon Sep 17 00:00:00 2001 From: Carson Sievert Date: Tue, 16 Oct 2018 12:15:21 -0500 Subject: [PATCH 5/6] make sure visual tests are run in 'ci' mode --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1bd449f5fa..d328454a4d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ before_install: - Rscript -e 'update.packages(ask = FALSE)' before_script: - - if [[ "$TRAVIS_R_VERSION_STRING" == "release" ]]; then docker run -e MAPBOX_TOKEN=$MAPBOX_TOKEN -v $(pwd):/home/plotly --privileged cpsievert/plotly-orca R -e "devtools::install_deps('/home/plotly', dep = T); res <- devtools::test('/home/plotly', reporter='summary'); df <- as.data.frame(res); if (sum(df\$failed) > 0 || any(df\$error)) q(status=1)"; fi + - if [[ "$TRAVIS_R_VERSION_STRING" == "release" ]]; then docker run -e MAPBOX_TOKEN=$MAPBOX_TOKEN -e VMODE="ci" -v $(pwd):/home/plotly --privileged cpsievert/plotly-orca; fi # work around temporary travis + R 3.5 bug r_packages: devtools From bb82fdd03dd1aa938c0dfc76040ca843a41f7d3c Mon Sep 17 00:00:00 2001 From: Carson Sievert Date: Thu, 18 Oct 2018 09:27:20 -0500 Subject: [PATCH 6/6] custom SVG writers are now on master --- inst/docker/Dockerfile.vtest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/docker/Dockerfile.vtest b/inst/docker/Dockerfile.vtest index 68a4c7faa2..b8938ac12a 100644 --- a/inst/docker/Dockerfile.vtest +++ b/inst/docker/Dockerfile.vtest @@ -86,7 +86,7 @@ RUN printf '#!/bin/bash \nxvfb-run --auto-servernum --server-args "-screen 0 640 RUN chmod 777 /usr/bin/orca # install visual testing packages -RUN R -e "devtools::install_github('lionel-/vdiffr#48')" +RUN R -e "devtools::install_github('lionel-/vdiffr')" RUN R -e "devtools::install_github('brodieG/diffobj@development')" # switch on visual testing