Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for a v0.1.0 announcement #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/src/announcement_post.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[ANN] SwarmMakie.jl: Beeswarm plots for Makie

![](SwarmMakie logo)


`SwarmMakie` implements beeswarm or swarm plots in Makie. These are scatter plots which are categorical (or singular) in the x-axis, where the markers are nudged so that each marker is visible and avoids overlap.

The main entry point to the package is the [`beeswarm`](@ref) recipe, which takes the same arguments as Makie's `scatter` plots, and transforms them into a beautiful beeswarm plot!

It's a regular Makie recipe, so you can use it with any tool that supports Makie. SwarmMakie also supports nonlinear scales like log axes.

## Quick start

```julia
using SwarmMakie, CairoMakie
beeswarm(ones(10), rand(10))
```

## Examples

![](multiple_swarm.png) ![](tecosaur_jlbench.png)

Loading