英文:
Trouble with streamlite.write() pandas dataframe does not show all information
问题
以下是要翻译的内容:
我正在使用st.write()
来显示一个包含长字符串的数据框中的列。当我使用st.write(df)
显示数据框时,它没有显示所有信息,这里是一个示例:
以下是代码:
with st.container():
st.write('<style>div[data-baseweb="table"] .cell {white-space: pre-wrap;}</style>', unsafe_allow_html=True)
st.dataframe(df_observaciones, width=1500, height=450)
我想查看所有信息,并在必要时包括换行符,任何帮助都将很有用。
英文:
I'm using st.write() to display a dataframe with long strings in a column. When i display the dataframe with st.write(df) it does not show all info, here is an example:
Here is the code:
with st.container():
st.write('<style>div[data-baseweb="table"] .cell {white-space: pre-wrap;}</style>',
unsafe_allow_html=True)
st.dataframe(df_observaciones, width=1500, height=450)
I want to see all the info and include line breaks if necesary, any help will be good.
答案1
得分: 0
st.table(df) 会显示所有信息。您可以在 https://docs.streamlit.io/library/api-reference/data/st.table 上找到更多信息。
英文:
One easy option is to use st.table(df), shows all the info.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论