drguthals / Introduction-to-Data-Science

This repository contains and introduction to data science for High School students using Azure Notebooks, Python, and Azure.
3 stars 2 forks source link

last bit of code #8

Closed drguthals closed 5 years ago

drguthals commented 5 years ago

airport_names = pd.Series(['ATL', 'DTW', 'JFK', 'MSP', 'SEA']) delay_count_dataframe = pd.DataFrame(airport_names) delay_count_dataframe[1] = delay_counts_per_airport delay_count_dataframe.columns = ['ORIGIN', 'Delay Counts'] delay_count_dataframe.set_index('ORIGIN')

Jaygup commented 5 years ago

it works thank you