New joemugare/billionaires Streamlit App

Check out this awesome Streamlit app I built
https://joemugare-billionaires-billionares.streamlit.app

3 Likes

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()
3 Likes

Thank you for the info

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.