Errorbar

using Makie
 using StatsMakie

 x = [1:4;]
 y =  [1:4;]
 Δx = fill(0.25, 4)
 Δy = fill(0.25, 4)
 p = errorbar(x,y,Δx,Δy,xcolor=:green, ycolor=:red)