sowc_maternal_newborn | R Documentation |
Data from UNICEF's State of the World's Children 2019 Statistical Tables.
sowc_maternal_newborn
A data frame with 202 rows and 18 variables.
Country or area name.
Life expectancy: female in 2018.
Demand for family planning satisfied with modern methods (%) 2013–2018 Women aged 15 to 49.
Demand for family planning satisfied with modern methods (%) 2013–2018 Women aged 15 to 19.
Adolescent birth rate 2013 to 2018.
Births by age 18 (%) 2013 to 2018.
Antenatal care (%) 2013 to 2018 At least one visit.
Antenatal care (%) 2013 to 2018 At least four visits Women aged 15 to 49.
Antenatal care (%) 2013 to 2018 At least four visits Women aged 15 to 19.
Delivery care (%) 2013 to 2018 Skilled birth attendant Women aged 15 to 49.
Delivery care (%) 2013 to 2018 Skilled birth attendant Women aged 15 to 19.
Delivery care (%) 2013 to 2018 Institutional delivery.
Delivery care (%) 2013–2018 C-section.
Postnatal health check(%) 2013 to 2018 For newborns.
Postnatal health check(%) 2013 to 2018 For mothers.
Maternal mortality 2017 Number of maternal deaths.
Maternal mortality 2017 Maternal Mortality Ratio.
Maternal mortality 2017 Lifetime risk of maternal death (1 in X).
United Nations Children's Emergency Fund (UNICEF)
library(dplyr)
library(ggplot2)
# List countries and lifetime risk of maternal death (1 in X), ranked
sowc_maternal_newborn |>
mutate(rank = round(rank(risk_maternal_death_2017), 0)) |>
select(countries_and_areas, rank, risk_maternal_death_2017) |>
arrange(rank)
# Graph scatterplot of Maternal Mortality Ratio 2017 and Antenatal Care 4+ Visits %
sowc_maternal_newborn |>
select(antenatal_care_4_1549, maternal_mortality_ratio_2017) |>
remove_missing(na.rm = TRUE) |>
ggplot(aes(antenatal_care_4_1549, maternal_mortality_ratio_2017)) +
geom_point(alpha = 0.5) +
labs(
title = "Antenatal Care and Mortality",
x = "Antenatal Care 4+ visits %",
y = "Maternal Mortality Ratio"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.