You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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))
|