File size: 281 Bytes
bc2e202
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import random

import names
import pandas as pd
import streamlit as st

st.set_page_config(layout="wide")
st.title("This is a wide table")

data = {names.get_full_name(): [random.random()] for _ in range(50)}

df = pd.DataFrame(data)
st.table(df.assign(hack="").set_index("hack"))