Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
|
@@ -16,6 +16,19 @@ st.markdown(
|
|
| 16 |
unsafe_allow_html=True,
|
| 17 |
)
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
|
| 21 |
# Load and clean dataset
|
|
@@ -126,7 +139,7 @@ bubble_chart = alt.Chart(df).mark_circle().encode(
|
|
| 126 |
width=800,
|
| 127 |
height=500,
|
| 128 |
title="Relationship Between County, Square Footage, and Total Floors"
|
| 129 |
-
)
|
| 130 |
|
| 131 |
st.altair_chart(bubble_chart,theme="streamlit", use_container_width=True)
|
| 132 |
|
|
|
|
| 16 |
unsafe_allow_html=True,
|
| 17 |
)
|
| 18 |
|
| 19 |
+
st.markdown(
|
| 20 |
+
"""
|
| 21 |
+
<style>
|
| 22 |
+
html, body, [data-testid="stAppViewContainer"] {
|
| 23 |
+
height: 100%;
|
| 24 |
+
overflow: hidden;
|
| 25 |
+
}
|
| 26 |
+
</style>
|
| 27 |
+
""",
|
| 28 |
+
unsafe_allow_html=True,
|
| 29 |
+
)
|
| 30 |
+
|
| 31 |
+
|
| 32 |
|
| 33 |
|
| 34 |
# Load and clean dataset
|
|
|
|
| 139 |
width=800,
|
| 140 |
height=500,
|
| 141 |
title="Relationship Between County, Square Footage, and Total Floors"
|
| 142 |
+
)
|
| 143 |
|
| 144 |
st.altair_chart(bubble_chart,theme="streamlit", use_container_width=True)
|
| 145 |
|