cast_shadow_shift_label | R Documentation |
Shift the values, add shadow, add missing label
cast_shadow_shift_label(data, ...)
data |
data.frame |
... |
One or more unquoted expressions separated by commas. These also respect the dplyr verbs "starts_with", "contains", "ends_with", etc. |
data.frame with the shadow and shadow_shift vars, and missing labels
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()
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.