Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created December 15, 2020 04:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/5fd29fa84e0c8058fd25cb224bcd85a2 to your computer and use it in GitHub Desktop.
Save codecademydev/5fd29fa84e0c8058fd25cb224bcd85a2 to your computer and use it in GitHub Desktop.
Codecademy export
import codecademylib3_seaborn
import pandas as pd
from students import students
print(students)
score_mean = students.score.mean()
print(score_mean)
students['score'] = students['score'].fillna(0)
score_mean_2 = students.score.mean()
print(score_mean_2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment