ggrepel icon indicating copy to clipboard operation
ggrepel copied to clipboard

:round_pushpin: Repel overlapping text labels away from each other in your ggplot2 figures.

Results 48 ggrepel issues
Sort by recently updated
recently updated
newest added

## Summary Request for an interactive widget to do final repositioning, with the widget providing code to paste for the final product.

enhancement

## Summary When the legend is too large and ggrepel is used, the following obtuse error text is produced: Error in grid.Call(C_convert, x, as.integer(whatfrom), as.integer(whatto), : Viewport has zero dimension(s)...

duplicate
help wanted

I am developing a `ggplot2` extension ([`gglyph`](https://github.com/aravind-j/gglyph/)) and would like to use the repel algorithm from `ggrepel`. I am able to get desired results even though I am trying to...

It would be great if the ggrepel lines could have the lty aesthetic. E.g., in the example below, geom_label_repel has the colour aesthetic, but I would like the blue label...

## Summary geom_label_repel() can help crowded labels in stacked bar charts, but there are no examples in the Examples page. ## Example data ```r library(tidyverse) library(ggrepel) # Data will create...

## Summary I was trying to achieve something similar as in this question: [Is there a possibility to combine position_stack and nudge_x in a stacked bar chart in ggplot2?](https://stackoverflow.com/questions/57525176/is-there-a-possibility-to-combine-position-stack-and-nudge-x-in-a-stacked-bar-ch), but...

## Summary ggplot2 will (hopefully) get `geom_sf_label()` and `geom_sf_text()` for labeling `sf` objects. (c.f. https://github.com/tidyverse/ggplot2/issues/2742#issuecomment-403315573) Are you interested in implementing the `_repel` version of these? Labelling sf objects is a...

enhancement

## Summary I was perusing the options/aesthetics on your [examples here](https://ggrepel.slowkow.com/articles/examples.html) and noticed that `min.segment.length` usage is discussed, but it's not actually called out in the handy options table. Unless...

## Summary Pull request #196 solves problems with justification and angle of rotation for the initial position, as seen passing to `geom_text_repel()` `max.iter = 0`. With the default for `max.iter`...

## Summary When forcing `geom_text|label_repel()` to draw vertical lines, one needs to use `hjust = 0.5`. Unfortunately, this argument applies justification to both the text and the textbox. ## Minimal...