initial commit

visualisation
Bastien OLLIER 1 year ago
commit 5a664243fd

@ -0,0 +1,2 @@
[server]
enableXsrfProtection = false

@ -0,0 +1,10 @@
import pandas as pd
import streamlit as st
st.title("Hello world!")
uploaded_file = st.file_uploader("Choose a file")
if uploaded_file is not None:
df = pd.read_csv(uploaded_file)
st.write(df.head(10))
st.write(df.tail(10))
Loading…
Cancel
Save