Skip to content

Commit

Permalink
Auto-commit: Mon Nov 18 13:14:51 CST 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
NAME committed Nov 18, 2024
1 parent b5a67fd commit ded28d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion week13/inClassStreamlit/Home.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down Expand Up @@ -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')),
Expand Down

0 comments on commit ded28d3

Please sign in to comment.