F1-analysis / pages /Penalty_Points.py
tracinginsights's picture
Update pages/Penalty_Points.py
b52467d
raw
history blame contribute delete
No virus
307 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)
Penalty_Points.points_table()