Spaces:
Running
Running
File size: 311 Bytes
7128e18 d823200 7128e18 d823200 9e1b4c6 9681280 d823200 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
from repo_directory import Championship_Standings
from repo_directory import button
import numpy as np
# select year
YEAR = st.selectbox(
'Select Year',
list(np.arange(1950,2023))[::-1]
)
df = Championship_Standings.get_results(YEAR)
Championship_Standings.plot(df, YEAR)
|