boxplot nan fix; add match_dimensions to pyplot supportedargs

This commit is contained in:
Thomas Breloff 2016-05-09 22:13:53 -04:00
parent a1b991aaeb
commit 536da01714
2 changed files with 3 additions and 2 deletions

View File

@ -33,7 +33,8 @@ supportedArgs(::PyPlotBackend) = [
:orientation, :orientation,
:overwrite_figure, :overwrite_figure,
:polar, :polar,
:normalize, :weights, :contours, :aspect_ratio :normalize, :weights, :contours, :aspect_ratio,
:match_dimensions,
] ]
supportedAxes(::PyPlotBackend) = _allAxes supportedAxes(::PyPlotBackend) = _allAxes
supportedTypes(::PyPlotBackend) = [ supportedTypes(::PyPlotBackend) = [

View File

@ -186,7 +186,7 @@ function apply_series_recipe(d::KW, ::Type{Val{:box}})
m, l, r, m, m, NaN, # lower T m, l, r, m, m, NaN, # lower T
l, l, r, r, l, NaN, # lower box l, l, r, r, l, NaN, # lower box
l, l, r, r, l, NaN, # upper 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 = [ ycoords = [
q1, q1, q1, q1, q2, NaN, # lower T q1, q1, q1, q1, q2, NaN, # lower T