Skip to content
Permalink
f8944e4b75
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
10 lines (8 sloc) 334 Bytes
#High Trip Counts Code =
import plotly.express as px
df_new = df[df['Number of Trips 10-25'] > 10000000]
fig = px.scatter(x=df_new["Date"], y=df_new['Number of Trips 10-25'])
fig.show()
df_new = df[df['Number of Trips 50-100'] > 10000000]
fig = px.scatter(x=df_new["Date"], y=df_new['Number of Trips 50-100'])
fig.show()