import streamlit as st import pandas as pd import numpy as np import matplotlib.pyplot as plt import altair as alt from PIL import Image # st.header - 显示主标题 st.header('学习streamlit模块')#显示主标题 # st.subheader - 显示副标题 st.subheader('副标题用法')#显示副标题 # st.text - 显示文本 st.text('显示定宽文本') # st.markdown - 显示markdown文本 st.markdown('Streamlit <html>', True) st.markdown('Streamlit <html>', False) # st.code - 显示代码块 code = '''def hello(): print("Hello, Streamlit!")''' st.code(code, language='python') st.code(code, language='java') # st.write - 通用显示方法 st.write("2222") st.write(1234) st.write(pd.DataFrame({ '名字': [1, 2, 3, 4], '电话': [10, 20, 30, 50], })) # json a = { 'foo': 'bar', 'baz': 'boz', 'stuff': [ 'stuff 1', 'stuff 2', 'stuff 3', 'stuff 5', ], } st.json(a) st.write(a["stuff"][1]) # st.pyplot - 显示pyplot图表 arr = np.random.normal(1, 1, size=100) plt.hist(arr, bins=50) st.set_option('deprecation.showPyplotGlobalUse', False) st.pyplot() # st.altair - 显示altair图表 df = pd.DataFrame(np.random.randn(200, 3), columns=['a', 'b', 'c']) c = alt.Chart(df).mark_circle().encode(x='a', y='b', size='c', color='c') st.altair_chart(c) # st.vega_lite_chart - 显示Vega-Lite图表 df = pd.DataFrame(np.random.randn(200, 3), columns=['a', 'b', 'c']) st.vega_lite_chart(df, { 'mark': 'circle', 'encoding': {'x': {'field': 'a', 'type': 'quantitative'}, 'y': {'field': 'b', 'type': 'quantitative'}, 'size': {'field': 'c', 'type': 'quantitative'}, 'color': {'field': 'c', 'type': 'quantitative'}, }, }) # st.line_chart - 显示折线图 chart_data = pd.DataFrame(np.random.randn(20, 3), columns=['a', 'b', 'c']) st.line_chart(chart_data) # st.area_chart - 显示区域图 chart_data = pd.DataFrame(np.random.randn(20, 3), columns=['a', 'b', 'c']) st.area_chart(chart_data) # st.map - 显示地图 df = pd.DataFrame(np.random.randn(1000, 2) / [50, 50] + [37.76, -122.4], columns=['lat', 'lon']) st.map(df) 请详细解释以上代码
时间: 2023-09-11 17:08:48 浏览: 99
python数据分析与可视化 import pandas as pd import numpy as np import m
以上代码是一个简单的示例,演示了如何使用Streamlit模块创建交互式应用程序。
首先,通过导入所需的模块,如streamlit、pandas、numpy、matplotlib.pyplot、altair和PIL.Image,我们可以开始构建应用程序。
接下来,使用`st.header`和`st.subheader`函数来显示主标题和副标题。
然后,使用`st.text`函数显示定宽文本。这对于显示简单的文本信息非常有用。
使用`st.markdown`函数可以显示Markdown格式的文本。可以通过将第二个参数设置为`True`或`False`来启用或禁用解析HTML标签。
然后,使用`st.code`函数显示代码块。可以指定代码块的语言。
通过`st.write`函数,可以以通用的方式显示文本、数字和数据框。
使用`st.json`函数可以显示JSON数据。可以通过键来访问JSON数据中的特定值。
使用`st.pyplot`函数可以显示使用matplotlib.pyplot绘制的图表。
使用`st.altair_chart`函数可以显示使用Altair绘制的图表。
使用`st.vega_lite_chart`函数可以显示使用Vega-Lite绘制的图表。
使用`st.line_chart`函数可以显示折线图。
使用`st.area_chart`函数可以显示区域图。
最后,使用`st.map`函数可以显示地图,通过传递包含经度和纬度的数据框来指定地图的位置。
以上就是该示例中使用的Streamlit模块的一些常见功能和用法。你可以根据自己的需求进行进一步的探索和定制。
阅读全文