From 84ca08e9383915a85fa22c4c19d1183a8c9e5eae Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Tue, 28 May 2024 22:50:53 +0000 Subject: [PATCH] fix forwarding of `show_intercept` --- src/coefplot.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coefplot.jl b/src/coefplot.jl index 77d3aa7..f06112c 100644 --- a/src/coefplot.jl +++ b/src/coefplot.jl @@ -20,7 +20,7 @@ The mutating methods return the original object. function coefplot(x::Union{MixedModel,MixedModelBootstrap}; show_intercept=true, kwargs...) # need to guarantee a min height of 150 fig = Figure(; size=(640, max(150, 75 * _npreds(x; show_intercept)))) - coefplot!(fig, x; kwargs...) + coefplot!(fig, x; show_intercept, kwargs...) return fig end