Is it possible to create this sort of chart in Bubble?
The equivalent python matplotlib (plt
), seaborn (sns
), streamlit / pyplot (st
) code is something like:
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)
sns.lineplot(data=stock_history, x = "name", y = "carbon stock", ax=ax)
st.pyplot(fig)