To upload files, please first save the app
import streamlit as st
import pandas as pd
df = pd.DataFrame({'N':[10, 20, 30], 'mean':[4.1, 5.6, 6.3]})
styler = df.style.format(subset=['mean'], decimal=',', precision=2).bar(subset=['mean'], align="mid")
st.dataframe(styler, hide_index=True)
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?