Skip to content

Instantly share code, notes, and snippets.

@JohnDeJesus22
Last active August 5, 2022 02:55
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 JohnDeJesus22/1cd5629ceea7919f052bc01148054a44 to your computer and use it in GitHub Desktop.
Save JohnDeJesus22/1cd5629ceea7919f052bc01148054a44 to your computer and use it in GitHub Desktop.
jb_set_up.py
# import libraries
import pandas as pd
from scipy.stats import jarque_bera
# load data
baby_names = pd.read_csv("Popular_Baby_Names.csv")
# inspect data
baby_names.info()
# Check total baby name counts per year
baby_names['Year of Birth'].value_counts().sort_index()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment