Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 648 Bytes

Display data.MD

File metadata and controls

16 lines (9 loc) · 648 Bytes

Certainly! Here's a breakdown of each function:

st.dataframe(my_dataframe)

Displays a DataFrame (tabular data structure) named my_dataframe in the Streamlit app.

st.table(data.iloc[0:10])

Displays a table with the first 10 rows of data from the DataFrame data.

st.json({'foo':'bar','fu':'ba'})

Renders JSON data (a dictionary in this case) in a readable format in the Streamlit app.

st.metric(label="Temp", value="273 K", delta="1.2 K")

Displays a metric with a label ("Temp"), value ("273 K"), and optional delta ("1.2 K") in the Streamlit app. This is useful for displaying metrics or key performance indicators (KPIs).