Adding annotations with custom font and color in plot recipes - Visualization - Julia Programming Language
I have created a plot recipe for one of my types in GeoStats.jl:
@recipe function f(γ::EmpiricalVariogram; bincounts=true)
# get the data
x, y, n = values(γ)
# discard empty bins
x = x[n .> 0]; y = y[n .> 0]; n…