asinghvi17 / SwarmMakie.jl

Beeswarm plots for Makie.jl!

Home Page:https://asinghvi17.github.io/SwarmMakie.jl/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SwarmMakie

Stable Dev Build Status

Beeswarm plots in Makie!

Quick start

The entry point to this package is the beeswarm recipe, which accepts input the same way scatter does in all respects -- plus a keyword algorithm, which specifies the beeswarm algorithm!

using SwarmMakie, CairoMakie
ys = rand(150)
beeswarm(ones(length(ys)), ys)
using SwarmMakie, CairoMakie
xs = rand(1:4, 500)
ys = randn(500)
beeswarm(xs, ys; color = xs)

See the docs for more!

About

Beeswarm plots for Makie.jl!

https://asinghvi17.github.io/SwarmMakie.jl/

License:MIT License


Languages

Language:Julia 100.0%