F1-analysis / pages /Penalty_Points.py
tracinginsights's picture
Update pages/Penalty_Points.py
65b7a38
raw
history blame
276 Bytes
from repo_directory import button
import streamlit as st
from repo_directory import Penalty_Points
_, drivers, n = Penalty_Points.get_data()
#Remove drivers
DRIVERS_REMOVED = st.multiselect(
'Select Drivers to remove',
drivers)
Penalty_Points.plot(DRIVERS_REMOVED)