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
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 .
Fanilo
It worked thanks for your support