CPSC-51100 Programming Assignment 5 – Data Preparations and Statistics Solved

50.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

5/5 - (4 votes)

Introduction

The file cps.csv (attached) contains school profile information for Chicago Public Schools. Your program will derive some data from it and then generate some statistical information.

Requirements

You are to create a program in Python that performs the following:

  1. Loads the cps.csv file (assume it’s in the current directory) and create a DataFrame object from it.
  1. Based on the data contained in the cps.csv file, generates a dataframe with the following information:
    1. School_ID
    2. Short_Name
    3. Is_High_School
    4. Zip
    5. Student_Count_Total
    6. College_Enrollment_Rate_School
    7. Lowest Grade Offered (derived from Grades_Offered_All column)
    8. Highest Grade Offered (derived from Grades_Offered_All column)
    9. Starting Hour (derived from School_Hours column)

 

The values for a-g are based on existing columns in the data. For h-j, you will need to generate new columns which derives information from existing ones.

Replace the missing numeric values with the mean for that column.

Display the first 10 rows of this dataframe.

  1. Displays the following information:
    1. Mean and standard deviation of College Enrollment Rate for High Schools
    2. Mean and standard deviation of Student_Count_Total for non-High Schools
    3. Distribution of starting hours for all schools
    4. Number of schools outside of the Loop Neighborhood (i.e., outside of zip codes 60601, 60602, 60603, 60604, 60605, 60606, 60607, and 60616)

Additional Requirements

  1. The name of your source code file should be py. All your code should be within a single file.
  2. You need to use the pandas DataFrame object for storing data.
  3. Your code should follow good coding practices, including good use of whitespace and use of both inline and block comments.
  4. You need to use meaningful identifier names that conform to standard naming conventions.
  5. At the top of each file, you need to put in a block comment with the following information: your name, date, course name, semester, and assignment name.

What to Turn In

You will turn in the single DataStats.py file using BlackBoard.

Sample Program Output

CORRECTION:

Distribution of Starting Hours should be:

8am: 415

7am: 193

9am: 40

 

  • Week5.zip