File size: 180 Bytes
28d20a2
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st
import eda
import prediction

halaman = st.sidebar.selectbox('Halaman: ',('EDA', 'Prediction'))
if halaman == 'EDA':
    eda.run()
else:
    prediction.run()