Streamlit output issue

I am taking data from a url in to pandas dataframe . when I plot the the interactive graph which i made from the dataframe the graph appears in new tab

1 Like

Hi @Bhavesh_Naidu, welcome to the forum,

The fig.show() at the end shows the graph in a new tab (like in this thread). If you want to display it in Streamlit you should use the st.plotly_chart(fig) method instead :slight_smile: .

Fanilo

2 Likes

It worked thanks for your support

1 Like