using CairoMakie
xs = [1,1,1,2,2,2,3,3,3]
ys = rand(9)
ymins = ys .- 1
ymaxs = ys .+ 1
dodge = [1, 2, 3, 1, 2, 3,1, 2, 3]
crossbar(xs, ys, ymins, ymaxs, dodge = dodge, color="gold",show_notch = true)

using CairoMakie
xs = [1,1,1,2,2,2,3,3,3]
ys = rand(9)
ymins = ys .- 1
ymaxs = ys .+ 1
dodge = [1, 2, 3, 1, 2, 3,1, 2, 3]
crossbar(xs, ys, ymins, ymaxs, dodge = dodge, color="gold",show_notch = true)