Comp 151 Project 6
Lets work with excel data
Due: Thursday April 4that
11:59pm (this project will take most of you longer. Start Early!!!!)
Summary: In this project you will grab
data from two different excel projects and use it to answer a question.
Description:
The last official US government census was 9
years ago in 2010, both of these files work with data from the last census
and some before that.
If you look the census data has all Mass
cities and towns, oddly enough separated by urban region.
The employment data on the other hand has them all in alphabetical order.
Your program is to report on each city or town, tell its 2010 census
count, then its labor force total (from the employment spreadsheet) and
finally calculate how many people are not in the labor force for that
municipality. This data is not in the two spreadsheets, use the difference
between the census count and the labor force total to calculate this.
Either create a new spreadsheet with all three columns, or report it
directly by printing to the screen.
Much like the class scheduling example we did
in class, there is dirty data here. The population spreadsheet in
particular has headings and blank lines that you will have to deal with.
Submission:
Starting this project you need to submit the
whole project folder. So name the project itself with your name in the
project (jsantoreProject6 for me) and then you can name your python files
whatever you want so long as I can tell which python file to run. Remove
any old stuff that you don't want me to run.
explain in a readme.txt:
- Your name
- What file I should run to run your program
- how you solved the problem.(in with the code itself.
- Anything that you didn't quite get working