tracinginsights commited on
Commit
880a36c
1 Parent(s): 9e1b4c6

Update pages/Championship_Standings.py

Browse files
Files changed (1) hide show
  1. pages/Championship_Standings.py +6 -6
pages/Championship_Standings.py CHANGED
@@ -5,11 +5,11 @@ import numpy as np
5
 
6
 
7
  # select year
8
- YEAR = st.selectbox(
9
- 'Select Year',
10
- list(np.arange(1950,2023))[::-1]
11
- )
12
 
13
- df = Championship_Standings.get_results(YEAR)
14
 
15
- Championship_Standings.plot(df, YEAR)
 
5
 
6
 
7
  # select year
8
+ # YEAR = st.selectbox(
9
+ # 'Select Year',
10
+ # list(np.arange(1950,2023))[::-1]
11
+ # )
12
 
13
+ df = Championship_Standings.get_results()
14
 
15
+ Championship_Standings.plot(df)