如何自定义streamlit制作的动态表?

How to customize the dynamic table produced by streamlit?

提问人:dbmtbm 提问时间:6/28/2023 更新时间:6/28/2023 访问量:213

问:

我想使用 Streamlit 中的动态表进行数据分析,因为它具有通过单击表标题对表进行排序的良好功能。但是,此表的字体大小太小而无法阅读,因此我正在寻找自定义此表的最佳方法,尤其是字体大小和文本颜色。

Asked 6 days ago
Modified 6 days ago
Viewed 56 times
0

import pandas as pd
import streamlit as st

df = pd.read_csv('data/AUDCAD_1h.csv', index_col=0)

st.dataframe(df, use_container_width=True)
python 数据表 jquery-ui-sortable streamlit

评论


答: 暂无答案