RecipesBase.jl icon indicating copy to clipboard operation
RecipesBase.jl copied to clipboard

recipe kwargs bug: `nbins`

Open mzgubic opened this issue 4 years ago • 0 comments

@userplot Example

@recipe function f(b::Example; kwarg=10, nbins=10)
    @show kwarg
    @show nbins
end 

julia> example(; kwarg=5, nbins=5)
kwarg = 5
nbins = 10

mzgubic avatar Nov 30 '21 11:11 mzgubic