Faceting to explore missingness (multiple plots)
Another useful technique with geommisspoint() is to explore the missingness by creating multiple plots.
Just as we have done in the previous exercises, we can use the nabular
data to help us create additional faceted plots.
We can even create multiple faceted plots according to values in the data, such as year, and features of the data, such as missingness.
Cet exercice fait partie du cours
Dealing With Missing Data in R
Instructions
- Use
geom_miss_point()
andfacet_wrap()
to explore how the missingness inwind_ew
andair_temp_c
is different for missingness ofhumidity
. - Use
geom_miss_point()
andfacet_grid()
to explore how the missingness inwind_ew
andair_temp_c
is different for missingness ofhumidity
and byyear
.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Use geom_miss_point() and facet_wrap to explore how the missingness
# in wind_ew and air_temp_c is different for missingness of humidity
bind_shadow(oceanbuoys) %>%
ggplot(aes(x = ___,
y = ___)) +
geom_miss_point() +
facet_wrap(~___)
# Use geom_miss_point() and facet_grid to explore how the missingness in wind_ew and air_temp_c
# is different for missingness of humidity AND by year - by using `facet_grid(humidity_NA ~ year)`
bind_shadow(oceanbuoys) %>%
ggplot(aes(x = ___,
y = ___)) +
geom_miss_point() +
facet_grid(humidity_NA~year)