Milestone_2 / app.py
Gansol's picture
Upload 6 files
76ddd0e verified
raw
history blame
230 Bytes
import streamlit as st
import eda
import prediction
import seaborn
Navigation = st.sidebar.selectbox('Pilih Halaman:', ('EDA','Predict Visitors Hotel Reservation'))
if Navigation == 'EDA':
eda.run()
else:
prediction.run()