diff --git a/src/axis.js b/src/axis.js index 1665d363e7..971b0db514 100644 --- a/src/axis.js +++ b/src/axis.js @@ -1,5 +1,4 @@ import {axisTop, axisBottom, axisRight, axisLeft} from "d3"; -import {interpolateRound} from "d3"; import {create} from "d3"; export class AxisX { @@ -60,7 +59,7 @@ export class AxisX { const ty = offsetSign * offset + (axis === "top" ? marginTop : height - marginBottom); return create("svg:g") .attr("transform", `translate(0,${ty})`) - .call((axis === "top" ? axisTop : axisBottom)(round(x)) + .call((axis === "top" ? axisTop : axisBottom)(x) .ticks(Array.isArray(ticks) ? null : ticks, typeof tickFormat === "function" ? null : tickFormat) .tickFormat(typeof tickFormat === "function" || !x.tickFormat ? tickFormat : null) .tickSizeInner(tickSize) @@ -145,7 +144,7 @@ export class AxisY { const tx = offsetSign * offset + (axis === "right" ? width - marginRight : marginLeft); return create("svg:g") .attr("transform", `translate(${tx},0)`) - .call((axis === "right" ? axisRight : axisLeft)(round(y)) + .call((axis === "right" ? axisRight : axisLeft)(y) .ticks(Array.isArray(ticks) ? null : ticks, typeof tickFormat === "function" ? null : tickFormat) .tickFormat(typeof tickFormat === "function" || !y.tickFormat ? tickFormat : null) .tickSizeInner(tickSize) @@ -176,12 +175,6 @@ export class AxisY { } } -function round(scale) { - return scale.interpolate // TODO round band and point scales? - ? scale.copy().interpolate(interpolateRound) - : scale; -} - function gridX(y2) { return g => g.selectAll(".tick line") .clone(true) diff --git a/src/marks/rule.js b/src/marks/rule.js index e49fe87d31..f8f13f22af 100644 --- a/src/marks/rule.js +++ b/src/marks/rule.js @@ -47,8 +47,8 @@ export class RuleX extends Mark { .data(index) .join("line") .call(applyDirectStyles, this) - .attr("x1", X ? i => Math.round(X[i]) : (marginLeft + width - marginRight) / 2) - .attr("x2", X ? i => Math.round(X[i]) : (marginLeft + width - marginRight) / 2) + .attr("x1", X ? i => X[i] : (marginLeft + width - marginRight) / 2) + .attr("x2", X ? i => X[i] : (marginLeft + width - marginRight) / 2) .attr("y1", Y1 ? i => Y1[i] : marginTop) .attr("y2", Y2 ? (y.bandwidth ? i => Y2[i] + y.bandwidth() : i => Y2[i]) : height - marginBottom) .attr("stroke", S && (i => S[i])) @@ -102,8 +102,8 @@ export class RuleY extends Mark { .call(applyDirectStyles, this) .attr("x1", X1 ? i => X1[i] : marginLeft) .attr("x2", X2 ? (x.bandwidth ? i => X2[i] + x.bandwidth() : i => X2[i]) : width - marginRight) - .attr("y1", Y ? i => Math.round(Y[i]) : (marginTop + height - marginBottom) / 2) - .attr("y2", Y ? i => Math.round(Y[i]) : (marginTop + height - marginBottom) / 2) + .attr("y1", Y ? i => Y[i] : (marginTop + height - marginBottom) / 2) + .attr("y2", Y ? i => Y[i] : (marginTop + height - marginBottom) / 2) .attr("stroke", S && (i => S[i])) .call(title(L))) .node(); diff --git a/src/marks/tick.js b/src/marks/tick.js index 7f0e2cad46..bb5976ffce 100644 --- a/src/marks/tick.js +++ b/src/marks/tick.js @@ -64,10 +64,10 @@ export class TickX extends AbstractTick { selection.call(applyTransform, x, null, 0.5, 0); } _x1(scales, {x: X}) { - return i => Math.round(X[i]); + return i => X[i]; } _x2(scales, {x: X}) { - return i => Math.round(X[i]); + return i => X[i]; } _y1(scales, {y: Y}, {marginTop}) { return Y ? i => Y[i] : marginTop; @@ -98,10 +98,10 @@ export class TickY extends AbstractTick { return X ? i => X[i] + x.bandwidth() : width - marginRight; } _y1(scales, {y: Y}) { - return i => Math.round(Y[i]); + return i => Y[i]; } _y2(scales, {y: Y}) { - return i => Math.round(Y[i]); + return i => Y[i]; } } diff --git a/test/output/aaplCandlestick.svg b/test/output/aaplCandlestick.svg index 9a03822975..e3f094b21e 100644 --- a/test/output/aaplCandlestick.svg +++ b/test/output/aaplCandlestick.svg @@ -1,306 +1,306 @@ - + 155 - + 160 - + 165 - + 170 - + 175 - + 180 - + 185 - + 190 ↑ Apple stock price ($) - + December - + 2018 - + February - + March - + April - + May - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/aaplChangeVolume.svg b/test/output/aaplChangeVolume.svg index 2daafe3bd2..fd2d702fc3 100644 --- a/test/output/aaplChangeVolume.svg +++ b/test/output/aaplChangeVolume.svg @@ -1,98 +1,98 @@ - + 7.1 - + 7.2 - + 7.3 - + 7.4 - + 7.5 - + 7.6 - + 7.7 - + 7.8 - + 7.9 - + 8.0 - + 8.1 - + 8.2 - + 8.3 - + 8.4 ↑ Volume (log₁₀) - + −6 - + −4 - + −2 - + +0 - + +2 - + +4 - + +6 - + +8 Daily change (%) → - + diff --git a/test/output/aaplClose.svg b/test/output/aaplClose.svg index 8aea158701..e6b5663a8a 100644 --- a/test/output/aaplClose.svg +++ b/test/output/aaplClose.svg @@ -4,57 +4,57 @@ 0 - + 20 - + 40 - + 60 - + 80 - + 100 - + 120 - + 140 - + 160 - + 180 ↑ Close - + 2014 - + 2015 - + 2016 - + 2017 - + 2018 diff --git a/test/output/aaplVolume.svg b/test/output/aaplVolume.svg index 2c62b17b55..b0c318ee49 100644 --- a/test/output/aaplVolume.svg +++ b/test/output/aaplVolume.svg @@ -4,35 +4,35 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 ↑ Frequency (%) diff --git a/test/output/anscombeQuartet.svg b/test/output/anscombeQuartet.svg index 1d0569853a..ea2dd9e2aa 100644 --- a/test/output/anscombeQuartet.svg +++ b/test/output/anscombeQuartet.svg @@ -1,22 +1,22 @@ - + 4 - + 6 - + 8 - + 10 - + 12 ↑ y @@ -38,15 +38,15 @@ - + 5 - + 10 - + 15 @@ -54,15 +54,15 @@ - + 5 - + 10 - + 15 @@ -70,15 +70,15 @@ - + 5 - + 10 - + 15 @@ -86,15 +86,15 @@ - + 5 - + 10 - + 15 x → diff --git a/test/output/athletesHeightWeight.svg b/test/output/athletesHeightWeight.svg index e555656714..0c9697e1e9 100644 --- a/test/output/athletesHeightWeight.svg +++ b/test/output/athletesHeightWeight.svg @@ -1,112 +1,112 @@ - + 1.25 - + 1.30 - + 1.35 - + 1.40 - + 1.45 - + 1.50 - + 1.55 - + 1.60 - + 1.65 - + 1.70 - + 1.75 - + 1.80 - + 1.85 - + 1.90 - + 1.95 - + 2.00 - + 2.05 - + 2.10 - + 2.15 - + 2.20 ↑ height - + 40 - + 60 - + 80 - + 100 - + 120 - + 140 - + 160 weight → diff --git a/test/output/athletesNationality.svg b/test/output/athletesNationality.svg index a7ad7ae35e..351365a68b 100644 --- a/test/output/athletesNationality.svg +++ b/test/output/athletesNationality.svg @@ -66,23 +66,23 @@ 0 - + 100 - + 200 - + 300 - + 400 - + 500 Frequency → diff --git a/test/output/athletesSexWeight.svg b/test/output/athletesSexWeight.svg index 09b3d81c5a..db585104bd 100644 --- a/test/output/athletesSexWeight.svg +++ b/test/output/athletesSexWeight.svg @@ -4,43 +4,43 @@ 0 - + 100 - + 200 - + 300 - + 400 - + 500 - + 600 - + 700 - + 800 - + 900 - + 1,000 ↑ Frequency @@ -61,7 +61,7 @@ 120 - + 140 diff --git a/test/output/athletesSportWeight.svg b/test/output/athletesSportWeight.svg index 7cfc77ed86..60b16f87f8 100644 --- a/test/output/athletesSportWeight.svg +++ b/test/output/athletesSportWeight.svg @@ -86,31 +86,31 @@ sport - + 40 - + 60 - + 80 - + 100 - + 120 - + 140 - + 160 weight → diff --git a/test/output/athletesWeight.svg b/test/output/athletesWeight.svg index c11d1da61c..2a99cdc290 100644 --- a/test/output/athletesWeight.svg +++ b/test/output/athletesWeight.svg @@ -3,63 +3,63 @@ 0 - + 50 - + 100 - + 150 - + 200 - + 250 - + 300 - + 350 - + 400 - + 450 - + 500 - + 550 - + 600 ↑ Frequency - + 40 - + 60 - + 80 - + 100 - + 120 - + 140 - + 160 weight → diff --git a/test/output/athletesWeightCumulative.svg b/test/output/athletesWeightCumulative.svg index a703746c2a..f23010d4da 100644 --- a/test/output/athletesWeightCumulative.svg +++ b/test/output/athletesWeightCumulative.svg @@ -3,57 +3,57 @@ 0 - + 1,000 - + 2,000 - + 3,000 - + 4,000 - + 5,000 - + 6,000 - + 7,000 - + 8,000 - + 9,000 - + 10,000 ↑ Frequency - + 40 - + 60 - + 80 - + 100 - + 120 - + 140 - + 160 weight → diff --git a/test/output/ballotStatusRace.svg b/test/output/ballotStatusRace.svg index ddc6fb1fa2..3e4c95c108 100644 --- a/test/output/ballotStatusRace.svg +++ b/test/output/ballotStatusRace.svg @@ -30,15 +30,15 @@ 0 - + 20 - + 40 - + 60 Frequency (%) → diff --git a/test/output/beckerBarley.svg b/test/output/beckerBarley.svg index d00e48e56b..e37b23dff6 100644 --- a/test/output/beckerBarley.svg +++ b/test/output/beckerBarley.svg @@ -24,11 +24,11 @@ 10 - + 20 - + 30 @@ -36,11 +36,11 @@ 40 - + 50 - + 60 diff --git a/test/output/covidIhmeProjectedDeaths.svg b/test/output/covidIhmeProjectedDeaths.svg index 08fe7cd39b..60235b8799 100644 --- a/test/output/covidIhmeProjectedDeaths.svg +++ b/test/output/covidIhmeProjectedDeaths.svg @@ -4,205 +4,205 @@ 1 - + 2 - + 3 - + 4 - + 5 - + - + - + - + - + 10 - + 20 - + 30 - + 40 - + 50 - + - + - + - + - + 100 - + 200 - + 300 - + 400 - + 500 - + - + - + - + - + 1,000 - + 2,000 - + 3,000 - + 4,000 ↑ Deaths per day to COVID-19 (projected) - + March - + Mar 08 - + Mar 15 - + Mar 22 - + Mar 29 - + Apr 05 - + Apr 12 - + Apr 19 - + Apr 26 - + May 03 - + May 10 - + May 17 - + May 24 - + May 31 - + Jun 07 - + Jun 14 - + Jun 21 - + Jun 28 - + Jul 05 - + Jul 12 diff --git a/test/output/crimeanWarOverlapped.svg b/test/output/crimeanWarOverlapped.svg index 7b3dfc7b11..66ce25e23c 100644 --- a/test/output/crimeanWarOverlapped.svg +++ b/test/output/crimeanWarOverlapped.svg @@ -3,43 +3,43 @@ 0 - + 200 - + 400 - + 600 - + 800 - + 1,000 - + 1,200 - + 1,400 - + 1,600 - + 1,800 - + 2,000 - + 2,200 - + 2,400 - + 2,600 ↑ deaths diff --git a/test/output/crimeanWarStacked.svg b/test/output/crimeanWarStacked.svg index 989d1c06f7..d6f767128d 100644 --- a/test/output/crimeanWarStacked.svg +++ b/test/output/crimeanWarStacked.svg @@ -3,22 +3,22 @@ 0 - + 500 - + 1,000 - + 1,500 - + 2,000 - + 2,500 - + 3,000 ↑ deaths diff --git a/test/output/diamondsCaratPrice.svg b/test/output/diamondsCaratPrice.svg index 9c01b884f1..59d994405e 100644 --- a/test/output/diamondsCaratPrice.svg +++ b/test/output/diamondsCaratPrice.svg @@ -1,57 +1,57 @@ - + 1,000 - + 2,000 - + 3,000 - + 4,000 - + 5,000 - + 6,000 - + 7,000 - + 8,000 - + 9,000 - + 10,000 - + 11,000 - + 12,000 - + 13,000 - + 14,000 - + 15,000 - + 16,000 - + 17,000 - + 18,000 @@ -59,34 +59,34 @@ ↑ price - + 0.5 - + 1.0 - + 1.5 - + 2.0 - + 2.5 - + 3.0 - + 3.5 - + 4.0 - + 4.5 - + 5.0 carat → diff --git a/test/output/diamondsCaratPriceDots.svg b/test/output/diamondsCaratPriceDots.svg index 8767ad1122..f22b4778f7 100644 --- a/test/output/diamondsCaratPriceDots.svg +++ b/test/output/diamondsCaratPriceDots.svg @@ -1,116 +1,116 @@ - + 1,000 - + 2,000 - + 3,000 - + 4,000 - + 5,000 - + 6,000 - + 7,000 - + 8,000 - + 9,000 - + 10,000 - + 11,000 - + 12,000 - + 13,000 - + 14,000 - + 15,000 - + 16,000 - + 17,000 - + 18,000 ↑ Price ($) - + 0.5 - + 1.0 - + 1.5 - + 2.0 - + 2.5 - + 3.0 - + 3.5 - + 4.0 - + 4.5 - + 5.0 Carats → diff --git a/test/output/empty.svg b/test/output/empty.svg index 6cba2a206d..a1f1e07e1a 100644 --- a/test/output/empty.svg +++ b/test/output/empty.svg @@ -4,19 +4,19 @@ 0.0 - + 0.1 - + 0.2 - + 0.3 - + 0.4 @@ -24,19 +24,19 @@ 0.5 - + 0.6 - + 0.7 - + 0.8 - + 0.9 @@ -50,19 +50,19 @@ 0.0 - + 0.1 - + 0.2 - + 0.3 - + 0.4 @@ -70,19 +70,19 @@ 0.5 - + 0.6 - + 0.7 - + 0.8 - + 0.9 diff --git a/test/output/gistempAnomaly.svg b/test/output/gistempAnomaly.svg index dca90b55d0..b5c83475c6 100644 --- a/test/output/gistempAnomaly.svg +++ b/test/output/gistempAnomaly.svg @@ -1,42 +1,42 @@ - + −0.6 - + −0.4 - + −0.2 - + +0.0 - + +0.2 - + +0.4 - + +0.6 - + +0.8 - + +1.0 - + +1.2 ↑ Temperature anomaly (°C) @@ -45,27 +45,27 @@ 1880 - + 1900 - + 1920 - + 1940 - + 1960 - + 1980 - + 2000 - + diff --git a/test/output/gistempAnomalyMoving.svg b/test/output/gistempAnomalyMoving.svg index a540fa7c33..6057eb1266 100644 --- a/test/output/gistempAnomalyMoving.svg +++ b/test/output/gistempAnomalyMoving.svg @@ -1,42 +1,42 @@ - + −0.6 - + −0.4 - + −0.2 - + +0.0 - + +0.2 - + +0.4 - + +0.6 - + +0.8 - + +1.0 - + +1.2 ↑ Temperature anomaly (°C) @@ -45,27 +45,27 @@ 1880 - + 1900 - + 1920 - + 1940 - + 1960 - + 1980 - + 2000 - + diff --git a/test/output/industryUnemployment.svg b/test/output/industryUnemployment.svg index 5a4af74770..d8a28672e7 100644 --- a/test/output/industryUnemployment.svg +++ b/test/output/industryUnemployment.svg @@ -4,31 +4,31 @@ 0 - + 2,000 - + 4,000 - + 6,000 - + 8,000 - + 10,000 - + 12,000 - + 14,000 ↑ unemployed @@ -37,34 +37,34 @@ 2000 - + 2001 - + 2002 - + 2003 - + 2004 - + 2005 - + 2006 - + 2007 - + 2008 - + 2009 - + 2010 diff --git a/test/output/industryUnemploymentShare.svg b/test/output/industryUnemploymentShare.svg index 7fc1771663..c19e06e2c7 100644 --- a/test/output/industryUnemploymentShare.svg +++ b/test/output/industryUnemploymentShare.svg @@ -4,19 +4,19 @@ 0% - + 10% - + 20% - + 30% - + 40% @@ -24,19 +24,19 @@ 50% - + 60% - + 70% - + 80% - + 90% @@ -49,34 +49,34 @@ 2000 - + 2001 - + 2002 - + 2003 - + 2004 - + 2005 - + 2006 - + 2007 - + 2008 - + 2009 - + 2010 diff --git a/test/output/industryUnemploymentStream.svg b/test/output/industryUnemploymentStream.svg index d299ab3576..bff233c08c 100644 --- a/test/output/industryUnemploymentStream.svg +++ b/test/output/industryUnemploymentStream.svg @@ -3,25 +3,25 @@ 0 - + 2,000 - + 4,000 - + 6,000 - + 8,000 - + 10,000 - + 12,000 - + 14,000 ↑ unemployed @@ -29,34 +29,34 @@ 2000 - + 2001 - + 2002 - + 2003 - + 2004 - + 2005 - + 2006 - + 2007 - + 2008 - + 2009 - + 2010 diff --git a/test/output/letterFrequencyBar.svg b/test/output/letterFrequencyBar.svg index 23be18c592..8a5f6f0df7 100644 --- a/test/output/letterFrequencyBar.svg +++ b/test/output/letterFrequencyBar.svg @@ -84,27 +84,27 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 Frequency (%) → diff --git a/test/output/letterFrequencyColumn.svg b/test/output/letterFrequencyColumn.svg index fb35965ac9..ba8d694631 100644 --- a/test/output/letterFrequencyColumn.svg +++ b/test/output/letterFrequencyColumn.svg @@ -4,51 +4,51 @@ 0 - + 1 - + 2 - + 3 - + 4 - + 5 - + 6 - + 7 - + 8 - + 9 - + 10 - + 11 - + 12 ↑ Frequency (%) diff --git a/test/output/letterFrequencyLollipop.svg b/test/output/letterFrequencyLollipop.svg index 9ca6e7df40..0d4f6f1e12 100644 --- a/test/output/letterFrequencyLollipop.svg +++ b/test/output/letterFrequencyLollipop.svg @@ -4,51 +4,51 @@ 0.00 - + 0.01 - + 0.02 - + 0.03 - + 0.04 - + 0.05 - + 0.06 - + 0.07 - + 0.08 - + 0.09 - + 0.10 - + 0.11 - + 0.12 ↑ frequency diff --git a/test/output/logDegenerate.svg b/test/output/logDegenerate.svg index 75859ac52e..2449616952 100644 --- a/test/output/logDegenerate.svg +++ b/test/output/logDegenerate.svg @@ -3,55 +3,55 @@ 1e-1 - + 2e-1 - + 3e-1 - + - + - + - + - + - + - + 1e+0 - + 2e+0 - + 3e+0 - + - + - + - + - + - + diff --git a/test/output/metroInequality.svg b/test/output/metroInequality.svg index a54ae388db..15a86360c5 100644 --- a/test/output/metroInequality.svg +++ b/test/output/metroInequality.svg @@ -1,46 +1,46 @@ - + 3.4 - + 3.6 - + 3.8 - + 4.0 - + 4.2 - + 4.4 - + 4.6 - + 4.8 - + 5.0 - + 5.2 - + 5.4 @@ -50,75 +50,75 @@ ↑ Inequality - + 200k - + 300k - + - + - + - + - + - + - + 1M - + 2M - + 3M - + - + - + - + - + - + - + 10M Population → diff --git a/test/output/metroInequalityChange.svg b/test/output/metroInequalityChange.svg index 755d453acc..46a3cd20d5 100644 --- a/test/output/metroInequalityChange.svg +++ b/test/output/metroInequalityChange.svg @@ -1,124 +1,124 @@ - + 3.5 - + 4.0 - + 4.5 - + 5.0 - + 5.5 - + 6.0 - + 6.5 - + 7.0 - + 7.5 - + 8.0 - + 8.5 ↑ Inequality - + 200k - + 300k - + - + - + - + - + - + - + 1M - + 2M - + 3M - + - + - + - + - + - + - + 10M - + 20M Population → diff --git a/test/output/metroUnemployment.svg b/test/output/metroUnemployment.svg index b219897c37..5d67d1862d 100644 --- a/test/output/metroUnemployment.svg +++ b/test/output/metroUnemployment.svg @@ -3,28 +3,28 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 ↑ unemployment @@ -32,22 +32,22 @@ 2000 - + 2002 - + 2004 - + 2006 - + 2008 - + 2010 - + 2012 diff --git a/test/output/metroUnemploymentHighlight.svg b/test/output/metroUnemploymentHighlight.svg index 490febeca3..d800ca4120 100644 --- a/test/output/metroUnemploymentHighlight.svg +++ b/test/output/metroUnemploymentHighlight.svg @@ -4,35 +4,35 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 ↑ Unemployment (%) @@ -41,22 +41,22 @@ 2000 - + 2002 - + 2004 - + 2006 - + 2008 - + 2010 - + 2012 diff --git a/test/output/metroUnemploymentIndex.svg b/test/output/metroUnemploymentIndex.svg index 6f552b73e2..88bebd3579 100644 --- a/test/output/metroUnemploymentIndex.svg +++ b/test/output/metroUnemploymentIndex.svg @@ -1,24 +1,24 @@ - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 ↑ unemployment @@ -26,25 +26,25 @@ 0 - + 1,000 - + 2,000 - + 3,000 - + 4,000 - + 5,000 - + 6,000 - + 7,000 diff --git a/test/output/metroUnemploymentMoving.svg b/test/output/metroUnemploymentMoving.svg index c521e5730f..b9d2fc845c 100644 --- a/test/output/metroUnemploymentMoving.svg +++ b/test/output/metroUnemploymentMoving.svg @@ -3,28 +3,28 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 ↑ unemployment @@ -32,22 +32,22 @@ 2000 - + 2002 - + 2004 - + 2006 - + 2008 - + 2010 - + 2012 diff --git a/test/output/metroUnemploymentNormalize.svg b/test/output/metroUnemploymentNormalize.svg index 90fd7ff806..603d55d0e5 100644 --- a/test/output/metroUnemploymentNormalize.svg +++ b/test/output/metroUnemploymentNormalize.svg @@ -1,30 +1,30 @@ - + 0.8× - + 0.9× - + - + - + - + - + ↑ Change in unemployment (%) @@ -33,22 +33,22 @@ 2000 - + 2002 - + 2004 - + 2006 - + 2008 - + 2010 - + 2012 @@ -100,6 +100,6 @@ - + \ No newline at end of file diff --git a/test/output/metroUnemploymentRidgeline.svg b/test/output/metroUnemploymentRidgeline.svg index a4e87d44a9..edb2fd1606 100644 --- a/test/output/metroUnemploymentRidgeline.svg +++ b/test/output/metroUnemploymentRidgeline.svg @@ -140,22 +140,22 @@ 2000 - + 2002 - + 2004 - + 2006 - + 2008 - + 2010 - + 2012 diff --git a/test/output/mobyDickFaceted.svg b/test/output/mobyDickFaceted.svg index f3bf5f1483..cfbfa558ad 100644 --- a/test/output/mobyDickFaceted.svg +++ b/test/output/mobyDickFaceted.svg @@ -22,27 +22,27 @@ 0 - + 200 - + 400 - + 600 - + 800 - + 1,000 - + 1,200 ↑ Frequency @@ -54,27 +54,27 @@ 0 - + 200 - + 400 - + 600 - + 800 - + 1,000 - + 1,200 diff --git a/test/output/mobyDickLetterFrequency.svg b/test/output/mobyDickLetterFrequency.svg index da019e3be7..5a395bbe21 100644 --- a/test/output/mobyDickLetterFrequency.svg +++ b/test/output/mobyDickLetterFrequency.svg @@ -4,51 +4,51 @@ 0 - + 100 - + 200 - + 300 - + 400 - + 500 - + 600 - + 700 - + 800 - + 900 - + 1,000 - + 1,100 - + 1,200 ↑ Frequency diff --git a/test/output/mobyDickLetterRelativeFrequency.svg b/test/output/mobyDickLetterRelativeFrequency.svg index 98e728ad76..48ca645879 100644 --- a/test/output/mobyDickLetterRelativeFrequency.svg +++ b/test/output/mobyDickLetterRelativeFrequency.svg @@ -4,51 +4,51 @@ 0 - + 1 - + 2 - + 3 - + 4 - + 5 - + 6 - + 7 - + 8 - + 9 - + 10 - + 11 - + 12 ↑ Frequency (%) diff --git a/test/output/morleyBoxplot.svg b/test/output/morleyBoxplot.svg index d38ae9aaf7..60e2709a3d 100644 --- a/test/output/morleyBoxplot.svg +++ b/test/output/morleyBoxplot.svg @@ -17,39 +17,39 @@ Expt - + 650 - + 700 - + 750 - + 800 - + 850 - + 900 - + 950 - + 1,000 - + 1,050 Speed → @@ -69,11 +69,11 @@ - + - - - + + + diff --git a/test/output/moviesProfitByGenre.svg b/test/output/moviesProfitByGenre.svg index 873b050db6..8dca9402dc 100644 --- a/test/output/moviesProfitByGenre.svg +++ b/test/output/moviesProfitByGenre.svg @@ -41,23 +41,23 @@ - + 0 - + 200 - + 400 - + 600 - + 800 @@ -67,7 +67,7 @@ Profit ($M) → - + @@ -3288,18 +3288,18 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/musicRevenue.svg b/test/output/musicRevenue.svg index f8464868fe..1c78526936 100644 --- a/test/output/musicRevenue.svg +++ b/test/output/musicRevenue.svg @@ -4,77 +4,77 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 - + 18 - + 20 - + 22 ↑ Annual revenue (billions, adj.) - + 1975 - + 1980 - + 1985 - + 1990 - + 1995 - + 2000 - + 2005 - + 2010 - + 2015 diff --git a/test/output/penguinCulmen.svg b/test/output/penguinCulmen.svg index 1651b43cde..2a48514961 100644 --- a/test/output/penguinCulmen.svg +++ b/test/output/penguinCulmen.svg @@ -24,23 +24,23 @@ - + 35 - + 40 - + 45 - + 50 - + 55 ↑ culmen_length_mm @@ -48,23 +48,23 @@ - + 35 - + 40 - + 45 - + 50 - + 55 @@ -72,23 +72,23 @@ - + 35 - + 40 - + 45 - + 50 - + 55 @@ -96,11 +96,11 @@ - + 15 - + 20 @@ -108,11 +108,11 @@ - + 15 - + 20 @@ -120,11 +120,11 @@ - + 15 - + 20 culmen_depth_mm → diff --git a/test/output/penguinCulmenArray.svg b/test/output/penguinCulmenArray.svg index 60f03bc947..9f89051fc0 100644 --- a/test/output/penguinCulmenArray.svg +++ b/test/output/penguinCulmenArray.svg @@ -24,23 +24,23 @@ - + 35 - + 40 - + 45 - + 50 - + 55 @@ -48,23 +48,23 @@ - + 35 - + 40 - + 45 - + 50 - + 55 @@ -72,23 +72,23 @@ - + 35 - + 40 - + 45 - + 50 - + 55 @@ -96,11 +96,11 @@ - + 15 - + 20 @@ -108,11 +108,11 @@ - + 15 - + 20 @@ -120,11 +120,11 @@ - + 15 - + 20 diff --git a/test/output/penguinMass.svg b/test/output/penguinMass.svg index 1179953941..5f54b2432e 100644 --- a/test/output/penguinMass.svg +++ b/test/output/penguinMass.svg @@ -4,39 +4,39 @@ 0 - + 10 - + 20 - + 30 - + 40 - + 50 - + 60 - + 70 - + 80 - + 90 ↑ Frequency diff --git a/test/output/penguinMassSex.svg b/test/output/penguinMassSex.svg index c239a1e753..b4d8c51f75 100644 --- a/test/output/penguinMassSex.svg +++ b/test/output/penguinMassSex.svg @@ -45,10 +45,10 @@ 0 - + 20 - + 40 ↑ Frequency @@ -58,10 +58,10 @@ 0 - + 20 - + 40 @@ -71,10 +71,10 @@ 0 - + 20 - + 40 diff --git a/test/output/penguinMassSexSpecies.svg b/test/output/penguinMassSexSpecies.svg index 2497ac9a7c..c2e8304410 100644 --- a/test/output/penguinMassSexSpecies.svg +++ b/test/output/penguinMassSexSpecies.svg @@ -27,16 +27,16 @@ 0 - + 10 - + 20 - + 30 - + 40 ↑ Frequency @@ -46,16 +46,16 @@ 0 - + 10 - + 20 - + 30 - + 40 @@ -65,16 +65,16 @@ 0 - + 10 - + 20 - + 30 - + 40 diff --git a/test/output/penguinMassSpecies.svg b/test/output/penguinMassSpecies.svg index 44fed5a9db..992cf5bd23 100644 --- a/test/output/penguinMassSpecies.svg +++ b/test/output/penguinMassSpecies.svg @@ -4,39 +4,39 @@ 0 - + 10 - + 20 - + 30 - + 40 - + 50 - + 60 - + 70 - + 80 - + 90 ↑ Frequency diff --git a/test/output/penguinSex.svg b/test/output/penguinSex.svg index 89c527bc73..6cb37e5b26 100644 --- a/test/output/penguinSex.svg +++ b/test/output/penguinSex.svg @@ -3,28 +3,28 @@ 0 - + 20 - + 40 - + 60 - + 80 - + 100 - + 120 - + 140 - + 160 ↑ Frequency diff --git a/test/output/penguinSexMassCulmenSpecies.svg b/test/output/penguinSexMassCulmenSpecies.svg index 62c6c4f943..7f4a7d24c6 100644 --- a/test/output/penguinSexMassCulmenSpecies.svg +++ b/test/output/penguinSexMassCulmenSpecies.svg @@ -1,26 +1,26 @@ - + 34 - + 36 - + 38 - + 40 - + 42 - + 44 @@ -28,27 +28,27 @@ 46 - + 48 - + 50 - + 52 - + 54 - + 56 - + 58 ↑ culmen_length_mm @@ -67,15 +67,15 @@ - + 3k - + 3.5k - + 4k @@ -83,15 +83,15 @@ 4.5k - + 5k - + 5.5k - + 6k @@ -99,15 +99,15 @@ - + 3k - + 3.5k - + 4k @@ -115,15 +115,15 @@ 4.5k - + 5k - + 5.5k - + 6k @@ -131,15 +131,15 @@ - + 3k - + 3.5k - + 4k @@ -147,15 +147,15 @@ 4.5k - + 5k - + 5.5k - + 6k body_mass_g → diff --git a/test/output/penguinSpeciesIsland.svg b/test/output/penguinSpeciesIsland.svg index fcf694a89f..e828806a0e 100644 --- a/test/output/penguinSpeciesIsland.svg +++ b/test/output/penguinSpeciesIsland.svg @@ -4,31 +4,31 @@ 0 - + 20 - + 40 - + 60 - + 80 - + 100 - + 120 - + 140 ↑ Frequency diff --git a/test/output/penguinSpeciesIslandRelative.svg b/test/output/penguinSpeciesIslandRelative.svg index 3a468ed694..63c23a1102 100644 --- a/test/output/penguinSpeciesIslandRelative.svg +++ b/test/output/penguinSpeciesIslandRelative.svg @@ -3,31 +3,31 @@ 0 - + 10 - + 20 - + 30 - + 40 50 - + 60 - + 70 - + 80 - + 90 diff --git a/test/output/penguinSpeciesIslandSex.svg b/test/output/penguinSpeciesIslandSex.svg index cf2545655e..499c779d6c 100644 --- a/test/output/penguinSpeciesIslandSex.svg +++ b/test/output/penguinSpeciesIslandSex.svg @@ -4,31 +4,31 @@ 0 - + 10 - + 20 - + 30 - + 40 - + 50 - + 60 - + 70 ↑ Frequency diff --git a/test/output/randomWalk.svg b/test/output/randomWalk.svg index 67bc02ac16..49b03c1fb4 100644 --- a/test/output/randomWalk.svg +++ b/test/output/randomWalk.svg @@ -1,39 +1,39 @@ - + −35 - + −30 - + −25 - + −20 - + −15 - + −10 - + −5 - + 0 - + 5 - + 10 - + 15 - + 20 @@ -41,31 +41,31 @@ 0 - + 50 - + 100 - + 150 - + 200 - + 250 - + 300 - + 350 - + 400 - + 450 diff --git a/test/output/seattleTemperatureBand.svg b/test/output/seattleTemperatureBand.svg index 07af2a53e0..cbf5b34bfd 100644 --- a/test/output/seattleTemperatureBand.svg +++ b/test/output/seattleTemperatureBand.svg @@ -1,34 +1,34 @@ - + 20 - + 30 - + 40 - + 50 - + 60 - + 70 - + 80 - + 90 ↑ Temperature (°F) @@ -37,1477 +37,1477 @@ 2012 - + 2013 - + 2014 - + 2015 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/sfTemperatureBand.svg b/test/output/sfTemperatureBand.svg index 3d19759062..f021ed2649 100644 --- a/test/output/sfTemperatureBand.svg +++ b/test/output/sfTemperatureBand.svg @@ -1,38 +1,38 @@ - + 40 - + 45 - + 50 - + 55 - + 60 - + 65 - + 70 - + 75 - + 80 ↑ Daily temperature range (°F) @@ -41,25 +41,25 @@ October - + 2011 - + April - + July - + October - + 2012 - + April - + July diff --git a/test/output/sfTemperatureBandArea.svg b/test/output/sfTemperatureBandArea.svg index 1a4e16b1fa..af6fa12717 100644 --- a/test/output/sfTemperatureBandArea.svg +++ b/test/output/sfTemperatureBandArea.svg @@ -1,62 +1,62 @@ - + 42 - + 44 - + 46 - + 48 - + 50 - + 52 - + 54 - + 56 - + 58 - + 60 - + 62 - + 64 - + 66 - + 68 - + 70 ↑ Daily temperature range (°F) @@ -65,25 +65,25 @@ October - + 2011 - + April - + July - + October - + 2012 - + April - + July diff --git a/test/output/simpsonsRatingsDots.svg b/test/output/simpsonsRatingsDots.svg index 4905b09a79..e6834633a8 100644 --- a/test/output/simpsonsRatingsDots.svg +++ b/test/output/simpsonsRatingsDots.svg @@ -3,31 +3,31 @@ 4.5 - + 5.0 - + 5.5 - + 6.0 - + 6.5 - + 7.0 - + 7.5 - + 8.0 - + 8.5 - + 9.0 ↑ IMDb rating diff --git a/test/output/simpsonsViews.svg b/test/output/simpsonsViews.svg index 0a45bfefff..32c304df8c 100644 --- a/test/output/simpsonsViews.svg +++ b/test/output/simpsonsViews.svg @@ -4,67 +4,67 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 - + 18 - + 20 - + 22 - + 24 - + 26 - + 28 - + 30 - + 32 ↑ Viewers (U.S., millions) @@ -74,39 +74,39 @@ 4.5 - + 5.0 - + 5.5 - + 6.0 - + 6.5 - + 7.0 - + 7.5 - + 8.0 - + 8.5 - + 9.0 IMDB rating → diff --git a/test/output/stocksIndex.svg b/test/output/stocksIndex.svg index 55c7c8569d..536946b541 100644 --- a/test/output/stocksIndex.svg +++ b/test/output/stocksIndex.svg @@ -1,65 +1,65 @@ - + −40 - + −30 - + −20 - + −10 - + +0 - + +100 - + +200 - + +300 - + +400 - + +500 ↑ Change in price (%) - + 2014 - + 2015 - + 2016 - + 2017 - + 2018 - + diff --git a/test/output/travelersYearOverYear.svg b/test/output/travelersYearOverYear.svg index 147bafaa57..3e1fe9b88a 100644 --- a/test/output/travelersYearOverYear.svg +++ b/test/output/travelersYearOverYear.svg @@ -4,59 +4,59 @@ 0.0 - + 0.2 - + 0.4 - + 0.6 - + 0.8 - + 1.0 - + 1.2 - + 1.4 - + 1.6 - + 1.8 - + 2.0 - + 2.2 - + 2.4 - + 2.6 - + 2.8 @@ -69,31 +69,31 @@ March - + April - + May - + June - + July - + August - + September - + October - + November - + December diff --git a/test/output/uniformRandomDifference.svg b/test/output/uniformRandomDifference.svg index d70922cc20..1451d39687 100644 --- a/test/output/uniformRandomDifference.svg +++ b/test/output/uniformRandomDifference.svg @@ -4,43 +4,43 @@ 0.0 - + 0.5 - + 1.0 - + 1.5 - + 2.0 - + 2.5 - + 3.0 - + 3.5 - + 4.0 - + 4.5 - + 5.0 ↑ Frequency (%) @@ -49,7 +49,7 @@ −1.0 - + −0.8 diff --git a/test/output/usCongressAge.svg b/test/output/usCongressAge.svg index b87417771b..55037b893c 100644 --- a/test/output/usCongressAge.svg +++ b/test/output/usCongressAge.svg @@ -4,27 +4,27 @@ 0 - + 5 - + 10 - + 15 - + 20 - + 25 - + 30 ↑ Frequency @@ -33,22 +33,22 @@ 30 - + 40 - + 50 - + 60 - + 70 - + 80 - + 90 diff --git a/test/output/usCongressAgeGender.svg b/test/output/usCongressAgeGender.svg index dcea485851..fc27227590 100644 --- a/test/output/usCongressAgeGender.svg +++ b/test/output/usCongressAgeGender.svg @@ -4,31 +4,31 @@ 10 - + 5 - + 0 - + 5 - + 10 - + 15 - + 20 - + 25 ← Women · Men → @@ -37,22 +37,22 @@ 30 - + 40 - + 50 - + 60 - + 70 - + 80 - + 90 @@ -2723,6 +2723,6 @@ - + \ No newline at end of file diff --git a/test/output/usPopulationStateAge.svg b/test/output/usPopulationStateAge.svg index feba277018..4b971e74dd 100644 --- a/test/output/usPopulationStateAge.svg +++ b/test/output/usPopulationStateAge.svg @@ -42,43 +42,43 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 - + 18 - + 20 Percent (%) → @@ -87,473 +87,473 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/usPopulationStateAgeDots.svg b/test/output/usPopulationStateAgeDots.svg index f29e929663..b90092bd3b 100644 --- a/test/output/usPopulationStateAgeDots.svg +++ b/test/output/usPopulationStateAgeDots.svg @@ -4,43 +4,43 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 - + 18 - + 20 Percent (%) → diff --git a/test/output/usPresidentialElection2020.svg b/test/output/usPresidentialElection2020.svg index 6b1874b27b..ee3767cc13 100644 --- a/test/output/usPresidentialElection2020.svg +++ b/test/output/usPresidentialElection2020.svg @@ -1,218 +1,218 @@ - + - + - + - + 100 - + 200 - + 300 - + - + - + - + - + - + - + 1k - + 2k - + 3k - + - + - + - + - + - + - + 10k - + 20k - + 30k - + - + - + - + - + - + - + 100k - + 200k - + 300k - + - + - + - + - + - + - + 1M - + 2M - + 3M - + ↑ Total number of votes - + −80 - + −60 - + −40 - + −20 - + +0 - + +20 - + +40 - + +60 - + +80 ← Biden · Vote margin (%) · Trump → - + diff --git a/test/output/usRetailSales.svg b/test/output/usRetailSales.svg index 0f296eee19..33a7dcd9b3 100644 --- a/test/output/usRetailSales.svg +++ b/test/output/usRetailSales.svg @@ -4,68 +4,68 @@ 0 - + 50 - + 100 - + 150 - + 200 - + 250 - + 300 - + 350 - + 400 - + 450 - + 500 - + 550 U.S. retail monthly sales (in billions, seasonally-adjusted) - + 1995 - + 2000 - + 2005 - + 2010 - + 2015 - + 2020 diff --git a/test/output/wordLengthMobyDick.svg b/test/output/wordLengthMobyDick.svg index 67cf1aca18..37237c28ef 100644 --- a/test/output/wordLengthMobyDick.svg +++ b/test/output/wordLengthMobyDick.svg @@ -4,43 +4,43 @@ 0 - + 2 - + 4 - + 6 - + 8 - + 10 - + 12 - + 14 - + 16 - + 18 - + 20 ↑ Frequency (%)