Skip to content

Instantly share code, notes, and snippets.

View ktread's full-sized avatar
:octocat:

Kate Treadwell ktread

:octocat:
View GitHub Profile
@ktread
ktread / eight
Last active July 27, 2019 19:22
python for mountain scraping
# What is the longest/shortest/avg route
mountain_route_insight = fin_routes.groupby('Mountain').agg({'ElevationGain':
['min', 'max','mean'],'RTMileage': ['min', 'max','mean']})