File size: 369 Bytes
1f3b843
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import streamlit as st

st.set_page_config(
    page_title="Data Introductions", # check with name of file 
    page_icon=":1234:"
)
st.sidebar.header("Intro to Data")

st.title('Info about our Dataset')

import pandas as pd
mobility_url = 'https://raw.githubusercontent.com/UIUC-iSchool-DataViz/is445_data/main/mobility.csv'
df = pd.read_csv(mobility_url)
st.write(df)