Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -59,7 +59,7 @@ bar_chart = (
|
|
59 |
)
|
60 |
|
61 |
# Combined Chart
|
62 |
-
|
63 |
|
64 |
# Tabs for Themes
|
65 |
tab1, tab2 = st.tabs(["Streamlit Theme", "Altair Native Theme"])
|
@@ -93,7 +93,7 @@ with tab2:
|
|
93 |
This scatter plot visualizes the relationship between year-acquired and Square Footage of buildings,
|
94 |
with Total Floors encoded as the size of the points.
|
95 |
""")
|
96 |
-
st.altair_chart(bar_chart, theme=
|
97 |
st.caption("""
|
98 |
This bar chart visualizes the distribution of Agency Name based on their acquisition year.
|
99 |
Design choices:
|
|
|
59 |
)
|
60 |
|
61 |
# Combined Chart
|
62 |
+
chart = alt.vconcat(scatter, bar_chart,title="Building Inventory Insights")
|
63 |
|
64 |
# Tabs for Themes
|
65 |
tab1, tab2 = st.tabs(["Streamlit Theme", "Altair Native Theme"])
|
|
|
93 |
This scatter plot visualizes the relationship between year-acquired and Square Footage of buildings,
|
94 |
with Total Floors encoded as the size of the points.
|
95 |
""")
|
96 |
+
st.altair_chart(bar_chart, theme=None, use_container_width=True)
|
97 |
st.caption("""
|
98 |
This bar chart visualizes the distribution of Agency Name based on their acquisition year.
|
99 |
Design choices:
|