Skip to content
Merged
Prev Previous commit
Next Next commit
update header
Co-authored-by: Liam Connors <[email protected]>
  • Loading branch information
rl-utility-man and LiamConnors authored Jun 4, 2025
commit 83d158a475b7859f5d345875a1a6190a1eebcbd5
2 changes: 1 addition & 1 deletion doc/python/line-and-scatter.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ fig.show()

### Swarm (or Beeswarm) Plots

Swarm plots show the distribution of values in a column by giving each entry one dot and adjusting the y-value so that dots do not overlap and appear symmetrically around the y=0 line. They complement histograms, box plots, and violin plots. This example could be generalized to implement a swarm plot for multiple categories by adjusting the y-coordinate for each category.
Swarm plots show the distribution of values in a column by giving each entry one dot and adjusting the y-value so that dots do not overlap and appear symmetrically around the y=0 line. They complement histograms, box plots, and violin plots. This example could be generalized to implement a swarm plot for multiple categories by adjusting the y-coordinate for each category.

```python
import pandas as pd
Expand Down