How to set xlabel and ylabel in makie recipe
using Makie function set_labels(scene::SceneLike, xlabel::AbstractString, ylabel::AbstractString) xaxis!(scene, xlabel) yaxis!(scene, ylabel) end scene = Scene() scatter!(scene, rand(10), rand(10)) set_labels(scene, “X”, “Y”) display(scene) Solution 1: Using the set_labels function To set the xlabel and