CoolFace
Apppublic

KevinDHS/Final_Project

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
app.py17 linesDownload Raw Back to root
1import streamlit as st2import matplotlib as plt3import eda4import predict5 6#setting page configuration7navigation = st.sidebar.selectbox("Select Page", 8                                  options=['EDA','Predict'])9 10st.sidebar.write('# About : Apart Helper')11st.sidebar.write('''12This page is created to help customer for choose the best apartment13                 ''')14if navigation =='EDA':15     eda.run()16else:17     predict.run()