Azrieldr
new
bad6720
raw
history blame contribute delete
No virus
195 Bytes
import streamlit as st
import prediction
import eda
navigation = st.sidebar.selectbox('Pilih Halaman: ', ('Predict', 'EDA'))
if navigation == 'Predict':
prediction.run()
else:
eda.run()