davidhodge931 / ggblanket

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

Gridlines issue #548

Closed davidhodge931 closed 11 months ago

davidhodge931 commented 12 months ago
library(tidyverse)
library(ggblanket)

d <- tribble(
  ~country, ~date, ~strain,
  "England", "2023-02-11", "Delta",
  "Australia", "2023-02-11", "Omnicron",
  "England", "2023-02-11", "Omnicron"
) |> 
  mutate(date = ymd(date))

d |> 
  gg_point(
    x = date, 
    y = country, 
    col = strain,
  )
davidhodge931 commented 11 months ago

Fine