vscode / app.py
destiratnakomala's picture
Upload 8 files
22dfc67
raw
history blame contribute delete
220 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman: ', ('EDA', 'PREDICT PASSANGERS SATISFACTION'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()