File size: 319 Bytes
742e1ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import plotly.express as px
from PIL import Image
import eda
import prediciton

navigation=st.sidebar.selectbox('Pilih Halaman:', ('EDA','Predict A player'))

if navigation== 'EDA':
    eda.run()
else:
    prediciton.run()