davidhodge931 / ggblanket

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

x-scale not working great in the below example #903

Closed davidhodge931 closed 1 month ago

davidhodge931 commented 1 month ago
library(tidyverse)
library(ggblanket)
library(palmerpenguins)
library(ragg)

set_blanket(mode = light_mode_r())
set_blanket(mode = grey_mode_r())

penguins |> 
  gg_point(
    x = flipper_length_mm,
    y = island,
    col = species,
    facet = island,
    facet2 = sex,
    facet_axes = "margins",
  )
davidhodge931 commented 1 month ago

edge case