Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -327,3 +327,12 @@ elif selected == "Rolling Statistics":
|
|
| 327 |
""")
|
| 328 |
fig = plot_rolling_statistics(data, ticker)
|
| 329 |
st.plotly_chart(fig)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 327 |
""")
|
| 328 |
fig = plot_rolling_statistics(data, ticker)
|
| 329 |
st.plotly_chart(fig)
|
| 330 |
+
|
| 331 |
+
|
| 332 |
+
hide_streamlit_style = """
|
| 333 |
+
<style>
|
| 334 |
+
#MainMenu {visibility: hidden;}
|
| 335 |
+
footer {visibility: hidden;}
|
| 336 |
+
</style>
|
| 337 |
+
"""
|
| 338 |
+
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|