From ded28d35ec7d689a0ca07d91de64855a73f1c167 Mon Sep 17 00:00:00 2001 From: NAME Date: Mon, 18 Nov 2024 13:14:51 -0600 Subject: [PATCH] Auto-commit: Mon Nov 18 13:14:51 CST 2024 --- week13/inClassStreamlit/Home.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/week13/inClassStreamlit/Home.py b/week13/inClassStreamlit/Home.py index 1e56969..29d812e 100644 --- a/week13/inClassStreamlit/Home.py +++ b/week13/inClassStreamlit/Home.py @@ -1,6 +1,7 @@ # we will often times use an app.py instead of a workbook so here is just a placeholder for that kind of file as well! import streamlit as st import matplotlib.pyplot as plt +import pandas as pd st.set_page_config( page_title='Hello', @@ -40,7 +41,6 @@ df = pd.read_csv(mobility_url) - scatters = alt.Chart(mobility_url).mark_point().encode( x = 'Mobility:Q', y=alt.Y('Population:Q', scale=alt.Scale(type='log')),