davidhodge931 / ggblanket

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

messages: gg_smooth is repeating messages #503

Closed davidhodge931 closed 7 months ago

davidhodge931 commented 1 year ago
library(palmerpenguins)
library(ggblanket)
penguins |>
  tidyr::drop_na(sex) |>
  gg_smooth(
    x = flipper_length_mm,
    y = body_mass_g
  )
#> `geom_smooth()` using method = 'loess' and formula = 'y ~ x'
#> `geom_smooth()` using method = 'loess' and formula = 'y ~ x'

Created on 2023-10-08 with reprex v2.0.2

davidhodge931 commented 7 months ago

Fixed :)