[AlgebraOfGraphics.jl] adding jitter to a scatter plot points

Hi,

I was wondering if anyone knows how (or if it is currently possible) to add jitter to the position of the points in this scatter plot generated with AlgebarOFGraphics.jl?

using CairoMakie, AlgebraOfGraphics, DataFrames, PalmerPenguins;

df = PalmerPenguins.load() |> DataFrame |> dropmissing;
	data(df) *
		mapping(:species, :bill_length_mm; color=:sex => nonnumeric) *
		visual(Scatter; markersize=10, alpha=0.5) |> draw