davidhodge931 / ggblanket

Simplify ggplot2 visualisation
https://davidhodge931.github.io/ggblanket/
Other
156 stars 8 forks source link

ticks: consider removing ticks on discrete x/y axes #886

Closed davidhodge931 closed 4 months ago

davidhodge931 commented 4 months ago
library(tidyverse)
library(palmerpenguins)
library(ggblanket)

set_blanket()

penguins |>
  gg_bar(
    y = species,
    width = 0.75,
  ) +
  theme(axis.ticks.y = element_blank())
davidhodge931 commented 4 months ago

Leave as is