Investigate mortality levels of infants and babies

Assignment Help Python Programming
Reference no: EM131985710

Theme: Child Mortality

Your task is to investigate mortality levels of children, infants and babies around the world. Which countries have a high rate of child deaths and which countries have low rates? Are there connections between child mortality rates and the income levels of the country, or the region where they are situated? Are the child mortality rates improving in recent years or getting worse?Reduction of child mortality was Goal 4 of the United Nations' Millennium Development Goals (2000-2015):

The data you will need is available from WHO:The World Health Organisation.

The two files you need to download:

- child mortality data
- country metadata

Learning Objectives

In this task you will learn how to:
• Apply relevant Python programming concepts to a data analysis challenge
• Read data from real sources and wrangle it into the form you need.
• Develop creative approaches to solving the wrangling/analysis problems.
• Adhere to the recommended Python programming styles
• Write programs that produce correct and useful output
• Organise and present adata analysis report
• Give an insightful analysis of the given problem.

Task 2 is broken into two parts (each worth 20% of the course).

1. Use Python to read and analyse the child mortality data and generate various useful graphs that give insight into the trends.

2. Use Python to combine the child mortality data and the country metadata, to give higher-level analyses of child mortality in relation to income grouping and regions of the world.

1 Child Mortality

In this first part of Task 2, you should write a Python script that reads and analyses the child mortality data file (WHOSIS_MDG_000003.csv) and produce at least FIVE useful graphs that give insight into the data trends.
You should produce the following graphs:

1. graph theunder-five mortality rates of all countries in 1990, sorted from lowest rate to highest rate. (If the graph is too crowded, you can show just each 10th country, or show the first 10 and last 10 countries).

2. graph the under-five mortality rates as above, but for 2015.

3. choose three representative countries in different areas of the world, then create a line graph showing the trends in under-five mortality in those countries over the years from 1990 to 2015.

4. for those same three countries, graph the reduction in under-five mortality rates over the 1990/2015 period - that is, the 1990 rate divided by the 2015 rate.

5. an under-five mortality graph of your choice... (explain why you chose that graph, and what conclusions you draw from the graph).

Hints:

1. Some of the columns contain multiple values (a mortality rate, plus a confidence interval), so you will need to split these up into separate columns.

2. You can either use standard Python data structures to store and manipulate the data, or use the Pandas library if you prefer.

3. Use markup and headings to break your Jupyter notebook into sections and give commentary about what you doing, and discussion of your results. This Jupyter notebook will be what you submit.

2 Child Mortality and Country Types

In this second part of Task 2, you should write another Python script that reads and analyses the country metadata (COUNTRY.json) and merges it with the child mortality data from Part 1, to allow you to do some higher-level analysis of under-fivemortality trends.
Your report should include at least twographs that display or compare under-five mortality in different regions of the world (using the 'WHO_REGION' string to group the countries).

You report should include at least two graphs that compare under-five mortality across different income groupings (using the 'WORLD_BANK_INCOME_GROUP' string to classify the countries).

Hints:
1. You can use the 'json' library to read the .json file. The resulting object is quite deeply nested, so you will need to explore which substructures contain the data that you want, and then extract that substructure into a dictionary or list that is easier to use. Or write a function that extracts the data that you need.

2. You can either use standard Python data structures to store and manipulate the data, or use the Pandas library if you prefer.

3. Use markup and headings to break your Jupyter notebook into sections and give commentary about what you doing, and discussion of your results. This Jupyter notebook will be what you submit.

Attachment:- Data file.rar

Verified Expert

Data science based work in python. The topic is Child mortality, also known as child death, refers to the death of children under the age of 14 and encompasses neonatal mortality, Need to come up with various visualization and combination of plots for this concept. Another point is child mortality under 5 which refer to any deaths from birth to the 5th birthday

Reference no: EM131985710

Questions Cloud

Increasing the number of circles : It can be shown that increasing the number of circles on each edge gives the following recurrence relation:
How much pay does mr johnson receive : How much pay does Mr. Johnson receive if he gives half of his pay to his family, $250 to his landlord, and has exactly 3/7 of his pay left over?
Determine the reinvested rate of return for the project : Determine the internal rate of return for the project. Determine the reinvested rate of return for the project.
Plant trees around the outside boundaries of rectangular : A farmer wants to plant trees around the outside boundaries of his rectangular field of dimensions 650 meters × 780 meters.
Investigate mortality levels of infants and babies : ICT702 - Which countries have a high rate of child deaths and which countries have low rates? Are there connections between child mortality rates
What are the bc-dr best practices for any organization : What are the BC/DR best practices for any organization? What recommendations would you have for Wilmington University Library?
Find the value for sin ? given the point : Find the value for sin ? given the point (-3, 4) on the terminal side. Leave your answer in fraction form.
Determine angular acceleration of link ab and bc : Determine angular acceleration of link AB and BC at this instant. Im unsure about how to solve this problem. Guidance would be appreciated.
What is the cost of new common equity considering : What is the cost of new common equity considering the estimate made from the three estimation methodologies?

Reviews

urv1985710

10/17/2018 12:14:35 AM

I never realized that I had the full solution to the assignment within 48hrs only after making the payment. I am really surprised because I did not pay any extra payment for such fast delivery. It was just normal pay as regular one. And also there is no compromise with the quality of the work.

len1985710

5/17/2018 2:56:19 AM

Your submission for each part of this task will be assessed according to the following criteria: • Presentation and organisation of your report [30%] • Data analysis and program output [30%] o Correctness of the program output and graphs o Insightful analysis and discussion of the data • Programming style [40%] o Creative approaches to solving the problem o Good use of relevant programming concepts, especially good use of functions o Good use of appropriate Python data structures, such as lists and dictionaries o Adherence to the recommended Python programming styles (indentation, documentation, naming conventions, etc.)

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd