File size: 932 Bytes
52c62fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c716dce
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
31
32
import streamlit as st
import eda
import prediction
from PIL import Image

#img1 = Image.open('balls.jpg')

page = st.sidebar.selectbox('Choose Page: ', 
                            ('Landing Page','Data Exploration','Data Prediction'))

if page == 'Landing Page':
    st.title('FIFA 2022 Player Rating Prediction')
    st.write('')
    st.write('Name      : Yosef')
    st.write('Batch     : HCK-007')
    st.write('Objective : Ovuvwevewe Onyetevwevwe Ugwemugwem Ossass')
    st.write('')
    st.write('Please select menu on the left bar')
    st.write('')
    # st.image(img1, caption="Balls")
    with st.expander('Background Dataset'):
        st.caption('Dataset background explaination')
    with st.expander('Problem Statement'):
        st.caption('Saya mau uang')
    with st.expander('SPONSOR'):
        st.caption('FIFA')
        # st.image(img1)

elif page == 'Data Exploration':
    eda.run()
else:
    prediction.run()