File size: 674 Bytes
c62c311
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import streamlit as st

st.set_page_config(
    page_title='Introduction to Data',
    page_icon=":1234:"
)

st.title('Info about our Dataset')

mobility_url = 'https://raw.githubusercontent.com/UIUC-iSchool-DataViz/is445_data/main/mobility.csv'


# Read in data with pandas
import pandas as pd

df = pd.read_csv(mobility_url)

#df
st.write(df)

import matplotlib.pyplot as plt
fig, ax = plt.subplots()
df['Seg_income'].plot(kind='hist',ax=ax)
#plt.show() # need to use streamlit infrastructure for this
st.pyplot(fig)

st.write("""Note I have added some things to 
         the requirements.txt file. """)
st.code("""
streamlit==1.39.0
altair
numpy
matplotlib
pandas
 """)