Skip to content

Commit

Permalink
Update static embedded examples for dataframe and table (streamlit#4100)
Browse files Browse the repository at this point in the history
  • Loading branch information
snehankekre authored Nov 24, 2021
1 parent 4b007e2 commit f63fdb6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/streamlit/elements/dataframe_selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def dataframe(self, data=None, width=None, height=None):
>>> st.dataframe(df) # Same as st.write(df)
.. output::
https://static.streamlit.io/0.25.0-2JkNY/index.html?id=165mJbzWdAC8Duf8a4tjyQ
height: 330px
https://static.streamlit.io/1.2.0-2FAcu/index.html?id=C2AE4xf85jDddBCaY1ugvt
height: 365px
>>> st.dataframe(df, 200, 100)
Expand All @@ -77,8 +77,8 @@ def dataframe(self, data=None, width=None, height=None):
>>> st.dataframe(df.style.highlight_max(axis=0))
.. output::
https://static.streamlit.io/0.29.0-dV1Y/index.html?id=Hb6UymSNuZDzojUNybzPby
height: 285px
https://static.streamlit.io/1.2.0-2FAcu/index.html?id=AgoA9PCNWzoJuwJL7J9ybD
height: 375px
"""
if _use_arrow():
Expand Down Expand Up @@ -110,7 +110,7 @@ def table(self, data=None):
>>> st.table(df)
.. output::
https://static.streamlit.io/0.25.0-2JkNY/index.html?id=KfZvDMprL4JFKXbpjD3fpq
https://static.streamlit.io/1.2.0-2FAcu/index.html?id=VQdtFSFvML7uMB8P7JMfT5
height: 480px
"""
Expand Down

0 comments on commit f63fdb6

Please sign in to comment.