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= 'EDA', layout='wide', initial_sidebar_state='expanded' ) st.set_option('deprecation.showPyplotGlobalUse', False) hide_streamlit_style = """ """ st.markdown(hide_streamlit_style, unsafe_allow_html=True) def run(): st.title('EDA') if __name__ == '__main__': run()