Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mnurbani
/
RMT026
like
0
Sleeping
App
Files
Files
Community
main
RMT026
/
app.py
mnurbani
first deploy
0855a17
11 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
187 Bytes
import
streamlit
as
st
import
eda1
import
prediction
page = st.sidebar.selectbox(
'Pilih Halaman : '
, (
'EDA'
,
'Prediction'
))
if
page ==
'EDA'
:
eda1.run()
else
:
prediction.run()