File size: 480 Bytes
742e1ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
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
st.set_page_config(
page_title='FIFA 2022',
layout='wide',
initial_sidebar_state='expanded'
)
def run():
st.title('fifa 2022 player rating data analysis')
st.subheader('eda untuk analisa dataset')
image= Image.open('soccer.jpg')
st.image(image, caption='fifa 2022')
if __name__== '__main__':
run()
|