Py.Cafe

maartenbreddels/

vaex-test

Interactive Streamlit Components on Py.cafe

DocsPricing
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
10
11
import streamlit as st
import numpy as np
import pandas as pd
import vaex

df = vaex.from_arrays(x=np.arange(10))

print(df)

#print(df.x.sum())