From 536da01714810ee798c34101a39d3830dc166733 Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Mon, 9 May 2016 22:13:53 -0400 Subject: [PATCH] boxplot nan fix; add match_dimensions to pyplot supportedargs --- src/backends/pyplot.jl | 3 ++- src/recipes.jl | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index d09a99c3..0649806d 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -33,7 +33,8 @@ supportedArgs(::PyPlotBackend) = [ :orientation, :overwrite_figure, :polar, - :normalize, :weights, :contours, :aspect_ratio + :normalize, :weights, :contours, :aspect_ratio, + :match_dimensions, ] supportedAxes(::PyPlotBackend) = _allAxes supportedTypes(::PyPlotBackend) = [ diff --git a/src/recipes.jl b/src/recipes.jl index f11bc839..6d1f30f8 100644 --- a/src/recipes.jl +++ b/src/recipes.jl @@ -186,7 +186,7 @@ function apply_series_recipe(d::KW, ::Type{Val{:box}}) m, l, r, m, m, NaN, # lower T l, l, r, r, l, NaN, # lower box l, l, r, r, l, NaN, # upper box - m, l, r, m, m # upper T + m, l, r, m, m, NaN, # upper T ] ycoords = [ q1, q1, q1, q1, q2, NaN, # lower T