crossbar
crossbar(x, y, ymin, ymax; kwargs...)
Draw a crossbar. A crossbar represents a range with a (potentially notched) box. It is most commonly used as part of the
boxplot
.
Arguments
-
x
: position of the box -
y
: position of the midline within the box -
ymin
: lower limit of the box -
ymax
: upper limit of the box
Keywords
-
orientation=:vertical
: orientation of box (:vertical
or:horizontal
) -
width=0.8
: width of the box -
show_notch=false
: draw the notch -
notchmin=automatic
: lower limit of the notch -
notchmax=automatic
: upper limit of the notch -
notchwidth=0.5
: multiplier ofwidth
for narrowest width of notch -
show_midline=true
: show midline
Examples
using CairoMakie
xs = [1, 1, 2, 2, 3, 3]
ys = rand(6)
ymins = ys .- 1
ymaxs = ys .+ 1
dodge = [1, 2, 1, 2, 1, 2]
crossbar(xs, ys, ymins, ymaxs, dodge = dodge, show_notch = true)
These docs were autogenerated using Makie: v0.15.3, GLMakie: v0.4.7, CairoMakie: v0.6.6, WGLMakie: v0.4.7