Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
mukhlishr
/
p1gc3-ftds-rmt-018
like
0
Runtime error
App
Files
Files
Community
061961e
p1gc3-ftds-rmt-018
/
app.py
mukhlishr
Upload 8 files
061961e
over 1 year ago
raw
Copy download link
history
blame
Safe
202 Bytes
import
streamlit
as
st
import
eda
import
prediction
navigation = st.sidebar.selectbox(
'pilih halaman : '
, (
'EDA'
,
'Predict of Death'
))
if
navigation ==
'EDA'
:
eda.run()
else
:
prediction.run()