显示条形图。
这只是 st.altair_chart 周围的syntax-sugar。主要区别在于此命令使用数据自己的列和索引来确定图表的规格。因此,这更容易用于许多“只是绘制这个”场景,同时不太可定制。
如果 st.bar_chart 没有正确猜测数据规范,请尝试使用 st.altair_chart 指定所需的图表。
函数签名
st.bar_chart(data=None, width=0, height=0, use_container_width=True)
参数 | 说明 |
---|---|
data (pandas.DataFrame, pandas.Styler, pyarrow.Table, numpy.ndarray, Iterable, or dict) | 要绘制的数据。 Streamlit 的旧版 DataFrame 序列化(即使用 |
width (int) | 图表宽度(以像素为单位)。如果为 0,则自动选择宽度。 |
height (int) | 图表高度(以像素为单位)。如果为 0,则自动选择高度。 |
use_container_width (bool) | 如果为 True,则将图表宽度设置为列宽。这优先于宽度参数。 |
示例
chart_data = pd.DataFrame(
np.random.randn(50, 3),
columns=["a", "b", "c"])
st.bar_chart(chart_data)
相关用法
- Python Streamlit st.balloons用法及代码示例
- Python Streamlit st.bokeh_chart用法及代码示例
- Python Streamlit st.button用法及代码示例
- Python Streamlit st.experimental_singleton.clear用法及代码示例
- Python Streamlit st.caption用法及代码示例
- Python Streamlit st.text_input用法及代码示例
- Python Streamlit st.area_chart用法及代码示例
- Python Streamlit st.title用法及代码示例
- Python Streamlit st.cache用法及代码示例
- Python Streamlit st.experimental_singleton用法及代码示例
- Python Streamlit st.empty用法及代码示例
- Python Streamlit st.error用法及代码示例
- Python Streamlit st.video用法及代码示例
- Python Streamlit st.vega_lite_chart用法及代码示例
- Python Streamlit st.slider用法及代码示例
- Python Streamlit st.header用法及代码示例
- Python Streamlit st.container用法及代码示例
- Python Streamlit st.form_submit_button用法及代码示例
- Python Streamlit st.form用法及代码示例
- Python Streamlit st.plotly_chart用法及代码示例
- Python Streamlit st.code用法及代码示例
- Python Streamlit st.experimental_memo.clear用法及代码示例
- Python Streamlit st.warning用法及代码示例
- Python Streamlit st.image用法及代码示例
- Python Streamlit st.markdown用法及代码示例
注:本文由纯净天空筛选整理自streamlit.io大神的英文原创作品 st.bar_chart。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。