File size: 448 Bytes
693c50e
 
 
 
 
 
 
 
0b85298
2bee8d2
 
 
693c50e
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import pandas as pd 
import streamlit as st
import eda
import prediction

page = st.sidebar.selectbox("choose page: ", ("Home page","Data exploration","Data Prediction"))

if page == "Home page":
    st.title("Passanger Satisfaction Prediction ")
    st.write("Name: Dicky Gabriel ")
    st.write("Batch: SBY-002 ")
    st.write("Objective: Predict Passanger Satisfaction ")
elif page == "Data exploration":
    eda.run()
else:
    prediction.run()