From a7fce1fd09b30e3dabfd9014eb7f1a76e52e4abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciar=C3=A1n=20O=27Mara?= Date: Mon, 8 Apr 2019 22:34:34 +1000 Subject: [PATCH] Remove Geom.rect from Geom.rectbin test --- test/testscripts/rectbin.jl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/testscripts/rectbin.jl b/test/testscripts/rectbin.jl index 2bce23b2c..606415244 100644 --- a/test/testscripts/rectbin.jl +++ b/test/testscripts/rectbin.jl @@ -5,7 +5,5 @@ set_default_plot_size(6inch, 3inch) # using RDatasets # plot(dataset("Zelig", "macro"), x="Year", y="Country", color="GDP", Geom.rectbin) -D = DataFrame(x=[0.5,1], y=[0.5,1], x1=[0,0.5], y1=[0,0.5], x2=[1,1.5], y2=[1,1.5]) -pa = plot(D, x=:x, y=:y, Geom.rectbin) -pb = plot(D, xmin=:x1, ymin=:y1, xmax=:x2, ymax=:y2, Geom.rect) -hstack(pa,pb) +D = DataFrame(x=[0.5,1], y=[0.5,1]) +plot(D, x=:x, y=:y, Geom.rectbin)