File size: 836 Bytes
e138d6c
c91cf83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import streamlit as st
import eda
import models


page = st.sidebar.selectbox(label='Select Page:', options=['Home Page', 'Exploration Data Analysis', 'Model Prediksi'])

if page == 'Home Page':
    st.header('Welcome Page') 
    st.write('')
    st.write('Milestone 2')
    st.write('Nama      : M. Rachman')
    st.write('Batch     : ')
    st.write('Tujuan Milestone    : ')
    st.write('')
    st.caption('Silahkan pilih menu lain di Select Box pada sebelah kiri layar anda untuk memulai!')
    st.write('')
    st.write('')
    with st.expander("Latar Belakang"):
        st.caption('lorem ipsum')

    with st.expander("Problem Statement"):
            st.caption('lorem ipsum')

    with st.expander("Kesimpulan"):
        st.caption('lorem ipsum')
elif page == 'Exploration Data Analysis':
    eda.run()
else:
     models.run()