File size: 309 Bytes
7128e18
 
 
d823200
7128e18
d823200
 
880a36c
 
 
 
d823200
880a36c
d823200
880a36c
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()

Championship_Standings.plot(df)