Py.Cafe

maartenbreddels/

virus-spread-simulation

Virus Spread Simulation with Streamlit2

DocsPricing
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
import streamlit as st
import pandas as pd

chart_data = pd.DataFrame(np.random.randn(20, 3), columns=["a", "b", "c"])
st.area_chart(chart_data)