njtierney / naniar

Tidy data structures, summaries, and visualisations for missing data
http://naniar.njtierney.com/
Other
651 stars 53 forks source link

Warning: guide = FALSE is deprecated | use guide = "none" instead #288

Closed ddauber closed 3 years ago

ddauber commented 3 years ago

Hi there! 👋


Please see the warning issued below when running gg_miss_var().

This warning does NOT show up with functions like:

(I have not tested all functions 😉)

It seems like an easy fix, though.

df <- dplyr::tribble(
  ~x, ~y,
  1,   1,
  2,  NA,
  NA,  3
  )

naniar::gg_miss_var(df)
#> Warning: It is deprecated to specify `guide = FALSE` to remove a guide. Please
#> use `guide = "none"` instead.

njtierney commented 3 years ago

Hi @ddauber !

Thanks so much for that, that is a relatively easy fix - about to push now.

ddauber commented 3 years ago

It seems this issue was resolved with ede9539. 👍

njtierney commented 3 years ago

Sorry I didn't get back to you - thanks for posting a great reprex! :)

ddauber commented 3 years ago

No problem at all. We are all busy people.👨‍💻