Skip to content

Commit

Permalink
Remove Geom.rect from Geom.rectbin test
Browse files Browse the repository at this point in the history
  • Loading branch information
CiaranOMara committed Feb 15, 2020
1 parent 1185c44 commit a7fce1f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/testscripts/rectbin.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit a7fce1f

Please sign in to comment.