belajarHF / app.py
kumala's picture
Upload 10 files
45662b6 verified
raw
history blame contribute delete
No virus
200 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman: ', ('EDA', 'Predict a Player'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()