Project Final Report

Team Members

Kaan Kaymaz 090180333
Ali Alperen Usta 090180323


Project Description

There are several issues that is important for world and people. When choosing topic, a couple of issues were tried to be brought together. The most interesting of these subjects was poverty. The different aspects of poverty made this subject focusable. Chen states that “Poverty is a state or condition in which a person or community lacks the financial resources and essentials for a minimum standard of living. Poverty means that the income level from employment is so low that basic human needs can’t be met. Poverty-stricken people and families might go without proper housing, clean water, healthy food, and medical attention.”(2020). According to the results of some studies, children are more than twice as likely to live in poverty than adults Children from the poorest households die at twice the rate of their better-off peers. This project aims to examine the living conditions, economic situation and educational status of children in the world. With this project, it is aimed to point out that child poverty is a huge problem for the world. Also the project examines the connection of these problems with the level of development of the countries according to different data such as mortality, education, nutrition and basic sanitation and water services.

According to Multidimensional Poverty Index which is specified in surveys of Sustainable Development Solutions Network (SDSN), there are 9 items that are indicators of poverty.
These are:
1. Adult or child malnourishment
2. Disrupted or curtailed schooling (a minimum of years 1-8)
3. The absence of any household member who has completed 6 years of schooling
4. Child mortality within the household within the last 5 years
5. Lack of access to safe drinking water
6. Lack of access to basic sanitation services
7. Lack of access to clean cooking fuel
8. Lack of basic modern assets (radio, TV, telephone, computer, bike, motorbike, etc.)
9. Lack of access to reliable electricity

The first 6 items related to child poverty were determined. Thus, topics mentioned in Project Guideline such as “Children”, “Clean water”, “Education”, “Hunger” and “Poverty” have been combined.
It is fact that many children do not have access to their basic needs even right to life. According to UNICEF, “across the world, about 1 billion children are multidimensionally poor, meaning they lack necessities as basic as nutrition or clean water”. This project is done to show that this problem is the common problem of all countries and that all countries should work together to end this problem.

Project Data & Access to Data

It was tried to find organizations doing research on children and poverty to find data. It was found some organizations interested in these topics, such as World Health Organization(WHO), Kids Count Data Center and UNICEF. After searching the data, it was considered that the most functional data belongs to UNICEF. That is why data of UNICEF was preffered. There were 6 different Excel spreadsheets we find suitable. These are related to “Child Mortality”, “Education” and “Water, Sanitation and Hygiene”. Also there are a table that separates the countries in the tables according to their regions and development levels.
This is the link to access the data[1].

For the final report, the mortality table, education table and water table were reviewed. A difficulty encountered is that the rows and columns in the data are not compatible. Also, having many empty columns caused missing values after inserting the data to R. Having many headers created difficulties after the data import. Furthermore, it was realized that while the columns with numbers in the data were expected to be numeric, they were actually in character type. This caused some problems in creating the graphics. The following code chunk was used to fix this issue. Although this code chunk gets certain warnings, there could not be found easier way to solve this problem.

World map data had to be present when creating the map. However, it was difficult to find data with the appropriate number of countries for the data. In addition, although the country numbers of some of the datasets were correct, the geometric data were given incorrectly or incompletely. Finally, a dataset specified in the reference was reached[2].

Project Goal & Social Problem Adressed

Poverty, which is one of the main problems of almost every country, is the main issue addressed in the project. In most countries, the child population makes up a third of the population. Therefore, in order to determine the poverty level of a country, it would be most logical to first look at the child poverty rate of that country’s population. About this topic, UNICEF (2020) emphasize that “Measurement of individual-based child poverty should be based on constitutive rights of poverty”(p.2). Child poverty is the poverty that is caused by the lack of public and private material resources.There are many parameters in this resources to measure child poverty such as access to safe drinking water, right to education, mortality rate, access to basic sanitation services. In the project, it is aimed to both give information about these parameters and calculate the child poverty rate based on those.

Change in Data

At this step of the project, a new data is added. By finding a data compatible with the previous data, the development level of the countries was taken. It was thought that it would be efficient to add the development levels of the countries to the previous data by finding a data compatible with the previous data.
It can be accessed following link to data in Out-of-school rates. Other than that, no changes were made.

Actions Taken

At this step of the project, it was studied on mortality data. The action steps are as follows.
Importing

  1. Mortality data is imported following code chunk.
mortality<-read_excel("data/Table-2-Child-Mortality-EN.xlsx") 
  1. The data which includes column of development regions is imported, and that column is taken.
dev_data<-read_excel("data/comparedata.xlsx")%>%
  slice(-c(1))%>%     
  select("Development Regions")

Cleaning & Reshaping

  1. In this step, a function has been written to get rid of columns and rows with all missing values. In addition, columns headings is changed properly. After that, taking the rows with the countries, “Development Regions” column has been added.
not_all_na <- function(mortality) any(!is.na(mortality) ) ##Function is defined.
  
mortality_tidy <-   
  mortality %>%   
  filter_all(any_vars(! is.na(.))) %>% ## This code line is used to delete the columns and 
  select(where(not_all_na)) %>%        ##rows which consist of NA.
  
  select(1:4|6:9|13:14) %>%       
  rename("Countries"="TABLE 2. CHILD MORTALITY",
         "Under_5_1990"="...2",
         "Under_5_2000"="...4",
         "Under_5_2018"="...6",
         "Under_5_male_rate_2018"="...10",
         "Under_5_female_rate_2018"="...12",
         "Infant_1990"="...14", # Column names have been renamed properly.
         "Infant_2018"="...16",
         "Dying_5_14_1990"="...24",
         "Dying_5_14_2018"="...26") %>%
         slice(c(3:204)) %>%
         mutate(dev_data,.after="Countries")# Country data is added to mortality data to compare.
  1. Countries with “Not Classified” development level has been removed. Liechtenstein city is also removed.
mortality_tidy <-  
mortality_tidy %>%
  filter(`Development Regions` != "Not Classified", Countries != "Liechtenstein")

Visualization

  1. While visualizing the data, attention was paid to the use of different graphics.
  • The graphs used are:
    • Boxplot
    • Pie Chart
    • Scatter Graph
    • Spatial Mapping

Boxplot

Under-5 Mortality Rate by Years

This graph shows that under-5 mortality rates(per 1000 live births) in 1990 of countries according to their level of development. It can be figured out from the graph that rates of the countries are low in direct proportion to the development level of the countries. While it is clear that there is a problem about children mortality, especially rates of least developed countries are higher.

Also, this graph shows that under-5 mortality rates(per 1000 live births) in 2000 of countries according to their level of development. As can be seen from the graph, deaths in 2000 are less than in 1990. The relationship between development levels and deaths is the same as in the other graph.

In addition, this graph shows that under-5 mortality rates(per 1000 live births) in 2018 of countries according to their level of development. Deaths in 2018 are less than in previous years. According to three graphs, it can be said that mortality rates have decreased for all developmental levels. This situation may be due to the development of the health sector and technology over time even in least countries. Furthermore, mortality rates in less developed countries are higher than in other countries. This can be explained by poor children’s lack of access to food, health care and clean water facilities.

Pie Chart

Under-5 Mortality Rate by Gender

These two graphs show that under-5 mortality rates(per 1000 live births) by gender in 2018 of countries according to their level of development. As seen in the graphs, rates for both sexes are higher in countries with low level of development. In addition, it is a fact that male mortality rates are higher than female mortality rates, regardless of the level of development. However, the fact that death rates in developed countries are close to each other for men and women is an important indicator of poverty.

Scatter Graph

Under-5 Mortality Rate in Least Developed Countries

Specifically, under-5 Mortality rate of the least developed countries are examined in the 3 charts above. As can be seen from the 3 graphs above, the death rate per thousand in children is very high in least developed countries. Also, it can be observed that the death rate has decreased over the years.

Under-5 Mortality Rate in More Developed Countries

On the other hand, under-5 Mortality rate of the more developed countries are shown in the 3 charts above. The number of child deaths is lower in developed countries than in underdeveloped countries. As can be seen from the values on the x-axis, it has never exceeded 50 in highly developed countries against the values that reach 300 in less developed countries. This reflects very well the relationship between child poverty and the level of development.

Out-of-School Rate in Primary Education between 2012 and 2018

A map in which the color tone increases according to the development level of the country has been created above. It can be seen that the out-of-school rates in primary school of the countries where the tone is low are high for both genders. From here, it is seen how high the rate of not going to school in underdeveloped countries is compared to developed countries.

Completion Rate in Primary Education between 2012 and 2018

From this map, it can be observed how the completion rates in primary school change with the level of development.On contrary, it can be observed from the map above how much the school completion rate increases as the level of development increases.

Total Rate of Access to the Clear Water for Least Developed Countries (%)

In underdeveloped countries, the rate of access to water drops to values as low as 40%. Hence, this rate is too low for children in these countries to survive.

Total Rate of Access to the Clear Water for More Developed Countries (%)

The graph above shows that this rate does not fall below 85% in highly developed countries. It can also be seen that the direct proportion of the level of development with the rate of access to water.

Results and Discussion

Child poverty is a reality all over the world, as indicated below the graphics. In least developed countries, child mortality rate and out-of-school rate are high. In addition, the rate of access to potable water is low. As the level of development of countries increases, these rates change positively, with exceptions.

As a result of a research of UNICEF, it is observed that all parameters considered in highly developed countries are in good condition compared to less developed countries. The data shared by UNICEF, shown below, on child mortality also coincide with these parameters.

CHILD MORTALITY RATES

  1. MEXICO: 37.6%

  2. EL SALVADOR: 78.9%

  3. GUATEMALA: 79.9%

  4. ALGERIA: 29%

  5. NIGERIA: 50.88%

  6. SENEGAL: 31%

  7. EGYPT: 29.5%

  8. TURKEY: 21.37%

  9. PAKISTAN: 49%

  10. SPAIN: 27%

  11. UNITED KINGDOM: 23%

  12. INDIA: 60.52%

  13. FRANCE: 16%

  14. GERMANY: 10%

  15. TANZANIA: 97%

  16. ZIMBABWE: 90%

  17. NIGER: 88.1%

As can be seen from the data above, NIGER, one of the countries with the lowest rate of access to clean water, which is one of the graphs used throughout the project, has a very high child poverty rate, while UNITED KINGDOM, one of the countries with the highest value in the graph, is among the countries with the lowest child poverty rate. In addition, the school completion rate of NIGER is 34.8% for men and 23.6% for women, which explains the high rates of child poverty for NIGER.

It is obvious that the improvement of even one of these parameters will reduce the poverty rates of the child population, which is expressed as the future of the country. Therefore, policymakers in underdeveloped countries should take this situation into account and urgently should find a solution to this situation.

Conclusion

To sum up, in this project, it has been worked on mortality, education and water data. Importing, cleaning, mutating, reshaping and visualization steps were applied. Difficulties encountered in the project, the data had too many missing values, the columns were not compatible with the rows and the structure of the columns was not as desired. Although it was difficult to convert the data to the desired format, it was successful. In addition to the interim report, education and water data were analyzed. Also, interactive maps and bar graph has been added. At the end of all these stages, a project was prepared in which sufficient information about child poverty could be obtained.

References

[1] UNICEF Table

[2] Spatial Data

[3] UNICEF Data Warehouse

[4] UNICEF Research

[5] Graph Implementations

[6] Solution of Poverty

[7] Slides with Rmarkdown