Check out this awesome Streamlit app I built
https://joemugare-billionaires-billionares.streamlit.app
To optimize the app, you can cache the loading of csv.
@st.cache_data
def load_bill_data():
return pd.read_csv('Billionaires Dataset.csv', encoding='latin-1')
# Load your dataset
df = load_bill_data()
Thank you for the info
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.