要在Streamlit中顯示PythonGraphics繪圖,可以使用Streamlit的st.pyplot()方法將matplotlib圖表轉(zhuǎn)換為Streamlit格式。下面是一個簡單的示例:
python
Copycode
importmatplotlib.pyplotasplt
importnumpyasnp
importstreamlitasst
#創(chuàng)建數(shù)據(jù)
x=np.linspace(0,10,100)
y=np.sin(x)
#創(chuàng)建圖表
fig,ax=plt.subplots()
ax.plot(x,y)
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_title('Sin(x)')
#在Streamlit中顯示圖表
st.pyplot(fig)
在這個示例中,我們首先使用numpy生成一些數(shù)據(jù),然后使用matplotlib創(chuàng)建圖表。接下來,我們使用Streamlit的st.pyplot()方法將圖表轉(zhuǎn)換為Streamlit格式并在Streamlit應用程序中顯示它。