All Projects โ†’ slowkow โ†’ Ggrepel

slowkow / Ggrepel

Licence: gpl-3.0
๐Ÿ“ Repel overlapping text labels away from each other.

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Ggrepel

Tidytuesday
๐Ÿ“Š My contributions to the #TidyTuesday challenge
Stars: โœญ 410 (-51.93%)
Mutual labels:  ggplot2, rstats
Ggalt
๐ŸŒŽ Extra Coordinate Systems, Geoms, Statistical Transformations & Scales for 'ggplot2'
Stars: โœญ 561 (-34.23%)
Mutual labels:  ggplot2, rstats
Hexsticker
โœจ Hexagon sticker in R
Stars: โœญ 464 (-45.6%)
Mutual labels:  ggplot2, rstats
Tidymv
Tidy Model Visualisation for Generalised Additive Models
Stars: โœญ 25 (-97.07%)
Mutual labels:  ggplot2, rstats
Ggforce
Accelerating ggplot2
Stars: โœญ 640 (-24.97%)
Mutual labels:  ggplot2, rstats
Ggsignif
Easily add significance brackets to your ggplots
Stars: โœญ 322 (-62.25%)
Mutual labels:  ggplot2, rstats
Upsetr
An R implementation of the UpSet set visualization technique published by Lex, Gehlenborg, et al..
Stars: โœญ 531 (-37.75%)
Mutual labels:  ggplot2, rstats
Ggpointdensity
๐Ÿ“ˆ ๐Ÿ“Š Introduces geom_pointdensity(): A Cross Between a Scatter Plot and a 2D Density Plot.
Stars: โœญ 286 (-66.47%)
Mutual labels:  ggplot2, rstats
Waffle
๐Ÿ Make waffle (square pie) charts in R
Stars: โœญ 614 (-28.02%)
Mutual labels:  ggplot2, rstats
Highcharter
R wrapper for highcharts
Stars: โœญ 583 (-31.65%)
Mutual labels:  cran, rstats
Ggpage
Creates Page Layout Visualizations in R ๐Ÿ“„๐Ÿ“„๐Ÿ“„
Stars: โœญ 306 (-64.13%)
Mutual labels:  ggplot2, rstats
Hrbrthemes
๐Ÿ” Opinionated, typographic-centric ggplot2 themes and theme components
Stars: โœญ 899 (+5.39%)
Mutual labels:  ggplot2, rstats
Ggextra
๐Ÿ“Š Add marginal histograms to ggplot2, and more ggplot2 enhancements
Stars: โœญ 299 (-64.95%)
Mutual labels:  ggplot2, rstats
Dataexplorer
Automate Data Exploration and Treatment
Stars: โœญ 362 (-57.56%)
Mutual labels:  cran, rstats
Ggpomological
๐Ÿ‘ Pomological plot theme for ggplot2
Stars: โœญ 293 (-65.65%)
Mutual labels:  ggplot2, rstats
Moderndive book
Statistical Inference via Data Science: A ModernDive into R and the Tidyverse
Stars: โœญ 527 (-38.22%)
Mutual labels:  ggplot2, rstats
layer
Create stacked tilted maps
Stars: โœญ 97 (-88.63%)
Mutual labels:  ggplot2, rstats
Heatmaply
Interactive Heat Maps for R Using plotly
Stars: โœญ 275 (-67.76%)
Mutual labels:  ggplot2, cran
Tidyexplain
๐Ÿคนโ€โ™€ Animations of tidyverse verbs using R, the tidyverse, and gganimate
Stars: โœญ 558 (-34.58%)
Mutual labels:  ggplot2, rstats
Ggthemr
Themes for ggplot2.
Stars: โœญ 697 (-18.29%)
Mutual labels:  ggplot2, rstats

ggrepel

Build Status CRAN_Status_Badge CRAN_Downloads_Badge

Overview

ggrepel provides geoms for ggplot2 to repel overlapping text labels:

  • geom_text_repel()
  • geom_label_repel()

Text labels repel away from each other, away from data points, and away from edges of the plotting area.

library(ggrepel)
ggplot(mtcars, aes(wt, mpg, label = rownames(mtcars))) +
  geom_text_repel() +
  geom_point(color = 'red') +
  theme_classic(base_size = 16)

Installation

# The easiest way to get ggrepel is to install it from CRAN:
install.packages("ggrepel")

# Or get the the development version from GitHub:
# install.packages("devtools")
devtools::install_github("slowkow/ggrepel")

Usage

See the examples page to learn more about how to use ggrepel in your project.

Contributing

Please submit an issue to report bugs or ask questions.

Please contribute bug fixes or new features with a pull request to this repository.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].