Test

Test#

import plotly.express as px
import plotly.io as pio
pio.renderers.default = 'notebook_connected'  # or another preferred type

fig = px.line(x=[1, 2, 3], y=[1, 4, 9])
fig.show()