Background The school board has notified Maria and her supervisor that the students_complete.csv file shows evidence of academic dishonesty; specifically, reading and math grades for Thomas High...

1 answer below »

Background


The school board has notified Maria and her supervisor that thestudents_complete.csvfile shows evidence of academic dishonesty; specifically, reading and math grades for Thomas High School ninth graders appear to have been altered. Although the school board does not know the full extent of the academic dishonesty, they want to uphold state-testing standards and have turned to Maria for help. She has asked you to replace the math and reading scores for Thomas High School with NaNs while keeping the rest of the data intact. Once you’ve replaced the math and reading scores, Maria would like you to repeat the school district analysis that you did in this module and write up a report to describe how these changes affected the overall analysis.


What You're Creating


This new assignment consists of two technical analysis deliverables and a written report to present your results. You will submit the following:



  • Deliverable 1: Replace ninth-grade reading and math scores

  • Deliverable 2: Repeat the school district analysis

  • Deliverable 3: A written report for the school district analysis (README.md)


Files


Use the following link to download the Challenge starter code:



Download challenge starter code(Links to an external site.)


Before You Start


Before you get started, follow these steps:




  1. Make a copy of yourPyCitySchools.ipynbfile and rename itPyCitySchools_Challenge_testing.ipynb.




  2. Download thePyCitySchools_Challenge_starter_code.ipynbfile, copy the code, and paste it at the top of yourPyCitySchools_Challenge_testing.ipynbfile.



    • You’ll use this file to test your code as you work through the challenge.




  3. Once your code is working, you'll make a copy of thePyCitySchools_Challenge_testing.ipynbfile and rename itPyCitySchools_Challenge.ipynb.




  4. When you're ready to submit, be sure to check that all DataFrames created for Deliverables 1 and 2 are visible in your outputs. Do not include any unnecessary print statements in your code.




Deliverable 1: Replace Ninth-Grade Reading and Math Scores (50 points)


Deliverable 1 Instructions


Using the Pandaslocmethod with conditional statements and comparison and logical operators, select the ninth-grade reading and math scores for Thomas High School. Then, use the Pandas NumPy module to change the reading and math scores to NaN.


REWIND

For this deliverable, you’ve already done the following in this module:



Use the instructions below to add code where indicated by the numbered-step comments in the starter code file.


IMPORTANT

Before you get started, open up your command line and use either of the following commands to install the NumPy module:



conda install numpyorpip install numpy




  1. Use the code snippet provided in Step 1 to import the NumPy module:import numpy as np.




  2. Use the code snippet provided in Step 2 for the Pandaslocmethod.




If you’d like a hint on using thelocmethod, that’s totally okay. If not, that’s great too. You can always revisit this later if you change your mind.


HINT


  1. To select all the ninth-grade reading scores at Thomas High School, use the following steps to write code inside the brackets of thelocmethod:




    • a) Add an opening parenthesis, then use a comparison operator to retrieve all the rows with Thomas High School from the "school_name" column of thestudent_data_df, then close the parenthesis.




    • b) Add a logical operator then another opening parenthesis, then use a comparison operator to retrieve all the rows with ninth grade from the "grade" column of thestudent_data_df, then close the parenthesis.




    • c) To change the reading scores only, add a comma after the last closing parenthesis then add the "reading_score" column.




    • d) Outside of the closing brackets of thelocmethod, set the ninth-grade reading scores from Thomas High School equal tonp.nan.






NOTE

If yourstudent_data_dflooks like the image below, you have not completed 3c above. In the image below, all the ninth-grade student data for Thomas High School was replaced with NaN.



The student data DataFrame with all the ninth grade student data for Thomas High School replaced with NaN




  1. In Step 3, refactor the code from Step 2 to replace the math scores with NaNs.




  2. In Step 4, check the student data to make sure the grades were replaced with NaNs.




  3. After you run Step 4 in yourPyCitySchools_Challenge_testing.ipynbfile, confirm that the DataFrame looks like the image below, where the ninth-grade reading and math scores from Thomas High School have been replaced with NaNs. Then, make a copy of thePyCitySchools_Challenge_testing.ipynbfile and rename itPyCitySchools_Challenge.ipynb.





The student data DataFrame after replacing the ninth grade math and reading scores for Thomas High School with NaN


Deliverable 1 Requirements


You will earn a perfect score for Deliverable 1 by completing all requirements below:




  • Thelocmethod is used to select all the reading and math scores from the ninth grade at Thomas High School. Inside thelocmethod, the following are completed:



    • A comparison operator is used to retrieve all the rows with Thomas High School in the "school_name" column of thestudent_data_df
      (10 pt).

    • A comparison operator is used to retrieve all the rows with the ninth grade in the "grade" column of thestudent_data_df
      (10 pt).

    • Logical and comparison operators are used to retrieve all the rows with the "reading_score" column for Thomas High School ninth graders from thestudent_data_df
      (10 pt).

    • Logical and comparison operators are used to retrieve all the rows with the "math_score" column for Thomas High School ninth graders from thestudent_data_df
      (10 pt).




  • The reading and math scores for the ninth graders in Thomas High school are replaced with NaNs(10 pt).




Deliverable 2:Repeat the School District Analysis (25 points)


Deliverable 2 Instructions


Repeat the school district analysis you did in this module, and recreate the following metrics:



  • The district summary

  • The school summary

  • The top 5 and bottom 5 performing schools, based on the overall passing rate

  • The average math score for each grade level from each school

  • The average reading score for each grade level from each school

  • The scores by school spending per student, by school size, and by school type


In Steps 1-4, you’ll update the district summary. For this task, you’ll recalculate the total student count by subtracting the number of ninth-grade students in Thomas High School from the total student count, then you'll recalculate the passing math and passing reading percentages, and the overall passing percentage with the recalculated total student count.


In Steps 5-14, you’ll execute the code from this module that creates and formats the School Summary DataFrame, then update the school summary using the 10th-12th graders from Thomas High School as follows:



  • First, you’ll calculate the number of 10th-12th graders in Thomas High School.

  • Create three new DataFrames for the 10th-12th graders from Thomas High School: students who passed math, students who passed reading, and students who passed both math and reading.

  • Using these DataFrames, you'll recalculate the percentage of students who passed math, passed reading, and passed both math and reading for Thomas High School only.

  • Finally, you'll replace the% Passing Math,% Passing Reading, and% Overall Passingscores in the current School Summary DataFrame with the new passing percentages for Thomas High School.


REWIND

For this deliverable, you’ve already completed the school district analysis in this module:




  • Lessons 7-13


Use the instructions below to add code where indicated by the numbered-step comments in the starter code file to update the District Summary DataFrame.



  1. In Step 1, using thelocmethod with logical and comparison operators, retrieve the student count for Thomas High School ninth graders in theschool_data_complete_dfDataFrame.

  2. In Step 2, subtract the number of students retrieved from Step 1 from the total student count to get the new total student count.

  3. In Step 3, calculate the math and reading passing percentages based on the new total student count.

  4. In Step 4, calculate the overall passing percentage with the new total student count.


Before moving on, confirm that that your District Summary DataFrame looks like this image:



The updated district summary DataFrame


Use the instructions below to add code where indicated by the numbered-step comments in the starter code file to update the School Summary DataFrame.



  1. Run the code from this module that creates and formats the School Summary DataFrame.


Before moving on, confirm that the metrics for Thomas High School look like this image.



Thomas High School’s metrics in the School Summary DataFrame



  1. In Step 5, get the number of 10th-12th grade students from Thomas High School.

  2. In Step 6, use thelocmethod to create a new DataFrame that has all the students passing math from Thomas High School.

  3. In Step 7, use thelocmethod to create a new DataFrame that has all the students passing reading from Thomas High School.

  4. In Step 8, use thelocmethod to create a new DataFrame that has all the students passing math and reading from Thomas High School.

  5. In Step 9, calculate the percentage of 10th-12th grade students passing math from Thomas High School.

  6. In Step 10, calculate the percentage of 10th-12th grade students passing reading from Thomas High School.

  7. In Step 11, calculate the overall passing percentage of 10th-12th grade students from Thomas High School.

  8. In Step 12, use thelocmethod to replace the% Passing Mathscore for Thomas High School with the new math passing percentage you calculated in Step 9.

  9. In Step 13, use thelocmethod to replace the% Passing Readingscore for Thomas High School with the new reading passing percentage you calculated in Step 10.

  10. In Step 14, use thelocmethod to replace the% Overall Passingscore for Thomas High School with the new overall passing percentage you calculated in Step 11.


If you’d like a hint on using thelocmethod to select an index and column, that’s totally okay. If not, that’s great too. You can always revisit this later if you change your mind.


HINT

Before moving on, confirm that the updated metrics for Thomas High School look like this image:



Thomas High School’s updated metrics in the School Summary DataFrame


Next, complete the following steps for school district analysis using the remaining steps that are provided in the starter code.



  • The top 5 and bottom 5 performing schools, based on the overall passing rate

  • The average math score for each grade level from each school

  • The average reading score for each grade level from each school

  • The scores by school spending per student, by school size, and by school type


Deliverable 2 Requirements


You will earn a perfect score for Deliverable 2 by repeating the school district analysis and updating the following required metrics in thePyCitySchools_Challenge.ipynbfile:



  • The district summary DataFrame(3 pt)

  • The school summary DataFrame(3 pt)

  • The top 5 performing schools, based on the overall passing rate(2 pt)

  • The bottom 5 performing schools, based on the overall passing rate(2 pt)

  • The average math score for each grade level from each school(3 pt)

  • The average reading score for each grade level from each school(3 pt)

  • The scores by school spending per student(3 pt)

  • The scores by school size(3 pt)

  • The scores by school type(3 pt)


Deliverable 3: A Written Report for the School District Analysis (25 points)


Deliverable 3 Instructions


For this part of the Challenge, write a report that summarizes your updated analysis and compares it with the results from the module.


The analysis should contain the following:





  1. Overview of the school district analysis:Explain the purpose of this analysis.





  2. Results:Using bulleted lists and images of DataFrames as support, address the following questions.



    • How is the district summary affected?

    • How is the school summary affected?

    • How does replacing the ninth graders’ math and reading scores affect Thomas High School’s performance relative to the other schools?

    • How does replacing the ninth-grade scores affect the following:

      • Math and reading scores by grade

      • Scores by school spending

      • Scores by school size

      • Scores by school type







  3. Summary:Summarize four changes in the updated school district analysis after reading and math scores for the ninth grade at Thomas High School have been replaced with NaNs.




Deliverable 3 Requirements


Structure, Organization, and Formatting (7 points)


The written analysis has the following structure, organization, and formatting:



  • There is a title, and there are multiple sections(2 pt).

  • Each section has a heading and subheading(3 pt).

  • Links to images are working, and code is formatted and displayed correctly(2 pt).


Analysis (18 points)


The written analysis has the following:




  • Overview of the school district analysis:



    • The purpose of this analysis is well defined(3 pt).




  • Results:



    • There is a bulleted list that addresses how each of the seven school district metrics was affected by the changes in the data(10 pt).




  • Summary:



    • There is a statement summarizing four changes to the school district analysis after reading and math scores have been replaced(5 pt).





Submission


Once you’re ready to submit, make sure to check your work against the rubric to ensure you are meeting the requirements for this Challenge one final time. It’s easy to overlook items when you’re in the zone!


As a reminder, the deliverables for this Challenge are as follows:



  • Deliverable 1: Replace ninth-grade reading and math scores

  • Deliverable 2: Repeat the school district analysis

  • Deliverable 3: A written report for the school district analysis (README.md)


Upload the following to your School_District_Analysis GitHub repository:



  • ThePyCitySchools_Challenge.ipynbfile.

  • The Resources folder with theschools_complete.csvandstudents_complete.csvfiles.

  • An updated README.md that has your written analysis.


To submit your challenge assignment in Canvas, click Submit, then provide the URL of your School_District_Analysis GitHub repository for grading. Comments are disabled for graded submissions in BootCampSpot. If you have questions about your feedback, please notify your instructional staff or the Student Success Manager. If you would like to resubmit your work for an improved grade, you can use theRe-Submit Assignmentbutton to upload new links. You may resubmit up to 3 times for a total of 4 submissions.


IMPORTANT

Once you receive feedback on your Challenge, make any suggested updates or adjustments to your work. Then, add this week’s Challenge to your professional portfolio.


NOTE

You are allowed to miss up to two Challenge assignments and still earn your certificate. If you complete all Challenge assignments, your lowest two grades will be dropped. If you wish to skip this assignment, click Submit then indicate you are skipping by typing “I choose to skip this assignment” in the text box.


Rubric

Module-4 RubricModule-4 Rubric
































CriteriaRatingsPts
This criterion is linked to a learning outcomeDeliverable 1: Replace Ninth Grade Reading and Math Scores










50to >47.0PtsMasteryThe Deliverable Fulfills "Approaching Mastery" Required Criteria and meets this requirement: ✓The reading and math scores are replaced with NaN.47to >42.0PtsApproaching MasteryThe Deliverable Fulfills "Progressing" Required Criteria and meets these requirements: PLUS ✓ Logical AND comparison operators are used to retrieve all the rows with the math scores forThomas High School ninth graders. AND does this: ✓ Either the reading OR math scores are replaced with NaN.42to >36.0PtsProgressingThe Deliverable Fulfills "Emerging" Required Criteria and meets these requirements: ✓ A comparison operator is used to retrieve all the rows with ninth grade in the "grade" column ✓ Logical AND comparison operators are used to retrieve all the rows with the reading scores for Thomas High School ninth graders. AND does these: ✓ Logical AND comparison operators are used to retrieve the math scores from ALL the grades at Thomas High School. ✓ There is an attempt to replace reading and/or math scores with NaN, OR all the rows from Thomas High School are replaced with NaN36to >0.0PtsEmergingREQUIRED: The Deliverable does the following: ✓A comparison operator is used to retrieve all the rows with Thomas High School in the "school_name" column. AND does these: ✓A comparison operator is used to retrieve all the rows from the "grade" column. ✓Logical AND comparison operators are used to retrieve the reading scores from all grades of Thomas High School. ✓Logical AND comparison operators are used to retrieve the math scores from all grades of Thomas High School. ✓There is an attempt to replace reading and math scores with NaN, OR all the rows from Thomas High School are replaced with NaN.0PtsIncomplete

50pts

This criterion is linked to a learning outcomeDeliverable 2: Repeat the School District Analysis










25to >24.0PtsMasteryThe reading and math scores are replaced with NaN and all the following are completed with no errors: ✓ There is a new district summary DataFrame. ✓There is a new school summary DataFrame. ✓ The bottom 5 performing schools are shown. ✓ The average math scores for each grade level are shown. ✓ The average math scores for each grade level are shown. ✓ The average reading scores for each grade level are shown. ✓ The scores by school spending per student is shown. ✓ The scores by school size is shown. ✓ The scores by school type are shown.24to >23.0PtsApproaching MasteryThe reading and math scores are replaced with NaN and all the following are completed with some errors: ✓ There is a new district summary DataFrame. ✓There is a new school summary DataFrame. ✓ The bottom 5 performing schools are shown. ✓ The average math scores for each grade level are shown. ✓ The average math scores for each grade level are shown. ✓ The average reading scores for each grade level are shown. ✓ The scores by school spending per student is shown. ✓ The scores by school size is shown. ✓ The scores by school type are shown.23to >20.0PtsProgressingEither the reading OR math scores are replaced with NaN and all the following are completed: ✓ There is a new district summary DataFrame. ✓There is a new school summary DataFrame. ✓ The bottom 5 performing schools are shown. ✓ The average math scores for each grade level are shown. ✓ The average math scores for each grade level are shown. ✓ The average reading scores for each grade level are shown. ✓ The scores by school spending per student is shown. ✓ The scores by school size is shown. ✓ The scores by school type are shown.20to >0.0PtsEmergingThe reading and math scores are not replaced with NaN but all the following are completed: ✓ There is a district summary DataFrame. ✓ There is a new school summary DataFrame. ✓ The top 5 performing schools are shown. ✓ The bottom 5 performing schools are shown. ✓ The average math scores for each grade level are shown. ✓ The average reading scores for each grade level are shown. ✓ The scores by school spending per student is shown. ✓ The scores by school size is shown. ✓ The scores by school type are shown.0PtsIncomplete

25pts

This criterion is linked to a learning outcomeDeliverable 3: Structure, Organization, and Formatting










7to >6.0PtsMasteryThe written analysis has ALL of the following: ✓ There is a title, and there are multiple sections. ✓ Each section has a heading and subheading. ✓ There are images and references to code, and they are formatted and displayed correctly.6to >4.0PtsApproaching MasteryThe written analysis has ALL of the following: ✓ There is a title, and there are multiple sections. ✓ Each section has a heading and subheading. ✓ There are images and references to code, and they are formatted and displayed correctly with one or two minor errors.4to >3.0PtsProgressingThe written analysis has ALL of the following: ✓ There is a title, and there are multiple sections. AND ONE of the following: ✓ Each section may have a heading and subheading. ✓ There are images and references to code, and they are formatted and displayed correctly with one or two minor errors.3to >0.0PtsEmergingThe written analysis has ALL of the following: ✓ There is a title. ✓ There may be a subheading for a section. ✓ There are no headings for each section, but there are three sections.0PtsIncomplete

7pts

This criterion is linked to a learning outcomeDeliverable 3: Analysis










18to >15.0PtsMastery✓ The purpose is well defined. ✓ SIX to SEVEN metrics are addressed. ✓ THREE to FOUR major changes are summarized for the school district analysis.15to >13.0PtsApproaching Mastery✓ The purpose is well defined. ✓ FIVE to SIX of the SEVEN metrics are addressed. ✓ TWO to THREE major changes are summarized for the school district analysis.13to >10.0PtsProgressing✓ The purpose is well defined. ✓ THREE to FOUR of the SEVEN metrics are addressed. ✓ ONE to TWO major changes are summarized for the school district analysis.10to >0.0PtsEmerging✓ The purpose is well defined. ✓ Less than THREE of the SEVEN metrics are addressed. ✓ Only ONE major change is summarized or the summary does not adequately address the major changes to the school district analysis.0PtsIncomplete

18pts

Total points:100

4.13.3: Commit Your Final Code" style="float: left;">Previous
Module 4 Career Connection" style="float: right;">Next© 2020 - 2021 Trilogy Education Services, a 2U, Inc. brand. All Rights Reserved.
Answered 1 days AfterNov 27, 2021

Answer To: Background The school board has notified Maria and her supervisor that the students_complete.csv...

Dinesh answered on Nov 28 2021
115 Votes
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here