Update Home.py
Browse files
Home.py
CHANGED
|
@@ -235,7 +235,7 @@ try:
|
|
| 235 |
fig, ax = plt.subplots(figsize=(10, 5))
|
| 236 |
ax.imshow(wordcloud, interpolation="bilinear")
|
| 237 |
ax.axis("off")
|
| 238 |
-
st.pyplot(fig)
|
| 239 |
st.write(" ")
|
| 240 |
|
| 241 |
|
|
@@ -268,7 +268,7 @@ try:
|
|
| 268 |
)
|
| 269 |
)
|
| 270 |
|
| 271 |
-
st.altair_chart(heatmap, use_container_width=True)
|
| 272 |
|
| 273 |
|
| 274 |
|
|
@@ -282,7 +282,10 @@ try:
|
|
| 282 |
st.altair_chart(chart_ins, use_container_width=True)
|
| 283 |
with col2.container(border=True, gap="medium", height=520):
|
| 284 |
st.altair_chart(chart_aut, use_container_width=True)
|
| 285 |
-
|
|
|
|
|
|
|
|
|
|
| 286 |
|
| 287 |
|
| 288 |
|
|
|
|
| 235 |
fig, ax = plt.subplots(figsize=(10, 5))
|
| 236 |
ax.imshow(wordcloud, interpolation="bilinear")
|
| 237 |
ax.axis("off")
|
| 238 |
+
#st.pyplot(fig)
|
| 239 |
st.write(" ")
|
| 240 |
|
| 241 |
|
|
|
|
| 268 |
)
|
| 269 |
)
|
| 270 |
|
| 271 |
+
#st.altair_chart(heatmap, use_container_width=True)
|
| 272 |
|
| 273 |
|
| 274 |
|
|
|
|
| 282 |
st.altair_chart(chart_ins, use_container_width=True)
|
| 283 |
with col2.container(border=True, gap="medium", height=520):
|
| 284 |
st.altair_chart(chart_aut, use_container_width=True)
|
| 285 |
+
with col1.container(border=True, gap="medium", height=520):
|
| 286 |
+
st.pyplot(fig)
|
| 287 |
+
with col2.container(border=True, gap="medium", height=520):
|
| 288 |
+
st.altair_chart(heatmap, use_container_width=True)
|
| 289 |
|
| 290 |
|
| 291 |
|