cast_shadow_shift_label {naniar} | R Documentation |
Add a shadow column and a shadow shifted column to a dataset
Description
Shift the values, add shadow, add missing label
Usage
cast_shadow_shift_label(data, ...)
Arguments
data |
data.frame |
... |
One or more unquoted expressions separated by commas. These also respect the dplyr verbs "starts_with", "contains", "ends_with", etc. |
Value
data.frame with the shadow and shadow_shift vars, and missing labels
See Also
cast_shadow_shift()
, cast_shadow_shift_label()
bind_shadow()
add_any_miss()
add_label_missings()
add_label_shadow()
add_miss_cluster()
add_prop_miss()
add_shadow_shift()
Examples
airquality %>% cast_shadow_shift_label(Ozone, Solar.R)
# replicate the plot generated by geom_miss_point()
## Not run:
library(ggplot2)
airquality %>%
cast_shadow_shift_label(Ozone,Solar.R) %>%
ggplot(aes(x = Ozone_shift,
y = Solar.R_shift,
colour = any_missing)) +
geom_point()
## End(Not run)
[Package naniar version 1.1.0 Index]