Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 532 Bytes

Week-15_Day-2_Slides_Pandas-2.md

File metadata and controls

23 lines (18 loc) · 532 Bytes

Announcements:

  • Project 3
  • LC-13 (last one)
  • 2 extra credit assignments!
  • Make sure you download and use the last notebook

Game plan

  • Pandas lecture + PCE today (focus on Q7-8) - be ready to practice!
    • Make sure you run all the previous cells in the PCE if you're opening the notebook after closing it/jupyter/your computer.

Lecture + PCE

Q7

def compute_passing_rate(df): # define parameters
    # your code here
    df['passingrate] = df.apply(passing_rate, axis=1)
    return df # and here