Understanding recipes in Plots.jl - Visualization - Julia Programming Language
I am trying to define a recipe for my package that generates a plot out of an image. Consider the simplified example below:
# somewhere in my package...
using RecipesBase
@recipe function plotfoo(A::AbstractArray)
x…