Spaces:
Sleeping
Sleeping
day 1
Browse files
app.py
CHANGED
@@ -126,12 +126,13 @@ emoji: 🏢
|
|
126 |
colorFrom: blue
|
127 |
colorTo: gray
|
128 |
sdk: streamlit
|
129 |
-
sdk_version: 1.
|
130 |
app_file: app.py
|
131 |
pinned: false
|
132 |
license: mit
|
133 |
---
|
134 |
''')
|
|
|
135 |
|
136 |
# Some important things to note here:
|
137 |
|
@@ -226,9 +227,6 @@ Note here that we made use of text highlight [colors](https://docs.streamlit.io/
|
|
226 |
|
227 |
st.subheader('Connecting Widgets and Plots')
|
228 |
|
229 |
-
st.markdown("""
|
230 |
-
We can also
|
231 |
-
""")
|
232 |
|
233 |
st.markdown("""
|
234 |
There are actually [many types of charts](https://docs.streamlit.io/develop/api-reference/charts)
|
@@ -297,7 +295,7 @@ fig.tight_layout()
|
|
297 |
fig.savefig(buf, format="png")
|
298 |
st.image(buf, width = 500) # can mess around with width, figsize/etc
|
299 |
|
300 |
-
st.write("Now, let's make this interactive")
|
301 |
st.markdown("""We'll first use the [multiselect](https://docs.streamlit.io/develop/api-reference/widgets/st.multiselect)
|
302 |
tool in order to allow for multiple state selection. """)
|
303 |
|
|
|
126 |
colorFrom: blue
|
127 |
colorTo: gray
|
128 |
sdk: streamlit
|
129 |
+
sdk_version: 1.39.0
|
130 |
app_file: app.py
|
131 |
pinned: false
|
132 |
license: mit
|
133 |
---
|
134 |
''')
|
135 |
+
st.write("Note: the sdk version has to match what is in your requirements.txt (and with whatever widgets you want to be able to use).")
|
136 |
|
137 |
# Some important things to note here:
|
138 |
|
|
|
227 |
|
228 |
st.subheader('Connecting Widgets and Plots')
|
229 |
|
|
|
|
|
|
|
230 |
|
231 |
st.markdown("""
|
232 |
There are actually [many types of charts](https://docs.streamlit.io/develop/api-reference/charts)
|
|
|
295 |
fig.savefig(buf, format="png")
|
296 |
st.image(buf, width = 500) # can mess around with width, figsize/etc
|
297 |
|
298 |
+
st.write("Now, let's make this interactive.")
|
299 |
st.markdown("""We'll first use the [multiselect](https://docs.streamlit.io/develop/api-reference/widgets/st.multiselect)
|
300 |
tool in order to allow for multiple state selection. """)
|
301 |
|