Skip to content

Instantly share code, notes, and snippets.

@lewiuberg
Created December 28, 2020 09:58
Show Gist options
  • Save lewiuberg/b7543a4e53b552f2ef752cff071c5302 to your computer and use it in GitHub Desktop.
Save lewiuberg/b7543a4e53b552f2ef752cff071c5302 to your computer and use it in GitHub Desktop.
Active Airport code 03
df = pd.read_csv("passenger_data.csv", delimiter=";", header=1).drop(["domestic/international flights", "passenger group"], axis=1)
df = df.sort_values(by="airport")
df.reset_index(drop=True, inplace=True)
df.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment