Spaces:
Running
Running
File size: 294 Bytes
7128e18 d823200 7128e18 d823200 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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',
np.arange(2022,1950))
df = Championship_Standings.get_results(YEAR)
Championship_Standings.plot(df, YEAR)
|