Hi there! 👋 --- Please see the warning issued below when running `gg_miss_var()`. This warning does **NOT** show up with functions like: - `gg_miss_case` - `gg_miss_var_cumsum()` - `gg_miss_case_cumsum()` (I have not tested all functions 😉) It seems like an easy fix, though. ``` r 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. ``` 