Instantly share code, notes, and snippets.
shantanuatgit / Assignment3.py
- Download ZIP
- Star ( 0 ) 0 You must be signed in to star a gist
- Fork ( 0 ) 0 You must be signed in to fork a gist
- Embed Embed this gist in your website.
- Share Copy sharable link for this gist.
- Clone via HTTPS Clone using the web URL.
- Learn more about clone URLs
- Save shantanuatgit/2054ad91d1b502bae4a8965d6fb297e1 to your computer and use it in GitHub Desktop.
IMAGES
VIDEO
COMMENTS
This repository contains Ipython notebooks of assignments and tutorials used in the course introduction to data science in python, part of Applied Data Science using Python Specialization from Univ...
This repository includes course assignments of Introduction to Data Science in Python on coursera by university of michigan
# Answer the following questions in the context of only the top 15 countries by Scimagojr Rank (aka the DataFrame returned by `answer_one()`) # ### Question 3 (6.6%) # What is the average GDP over the last 10 years for each country?
Join the three datasets: GDP, Energy, and ScimEn into a new dataset (using the intersection of country names). Use only the last 10 years (2006-2015) of GDP data and only the top 15 countries by Scimagojr 'Rank' (Rank 1 through 15).
Question 3¶ What are the top 15 countries for average GDP over the last 10 years? This function should return a Series named avgGDP with 15 countries and their average GDP sorted in descending order. Top15 = answer_one() years = ['2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015']
Assignment 3 - More Pandas This assignment requires more individual learning then the last one did - you are encouraged to check out the pandas documentation to find functions or methods you might not have used yet, or ask questions on Stack Overflow and tag them as pandas and python related.
# Answer the following questions in the context of only the top 15 countries by Scimagojr Rank (aka the DataFrame returned by `answer_one()`) # ### Question 3 (6.6%) # What is the average GDP over the last 10 years for each country?
Introduction to Data Science in PythonUniversity of Michigan | Assignment 3 GitHub answer |#courserasolutions #coursera #courseraanswersGitHub link Assignmen...
Quiz yourself with questions and answers for Introduction to Data Science in Python (Final Exam), so you can be ready for test day. Explore quizzes and practice tests created by teachers and students or create one from your course material.
Assignment 3 of Introduction to Data Science with Python focuses on using Pandas for data manipulation and analysis.