File size: 213 Bytes
1a64d85
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import streamlit as st
import polars as pl

st.write("Here's our first attempt at using data to create a table:")
st.write(pl.DataFrame({
    'first column': [1, 2, 3, 4],
    'second column': [10, 20, 30, 40]
}))