File size: 171 Bytes
568085d |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
import pandas as pd
import numpy as np
df = pd.DataFrame(
np.random.randn(10, 5),
columns=('col %d' % i for i in range(5))
)
st.table(df)
|