Spaces:
Sleeping
Sleeping
File size: 373 Bytes
4096d6d 7d76581 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import streamlit as st
st.set_page_config(page_title="Introduction to Data", page_icon=":1234:") # not sure what this adds?
st.sidebar.header("Introduction to Data")
st.title("Example of reading in data")
mobility_url = "https://raw.githubusercontent.com/UIUC-iSchool-DataViz/is445_data/main/mobility.csv"
import pandas as pd
df = pd.read_csv(mobility_url)
st.write(df)
|