Render Demo

test
other
Published

March 11, 2024

Modified

May 15, 2026

Render Demo


import plotly.io as pio
pio.renderers.default = 'plotly_mimetype+notebook_connected'
print("hello world - 2!")
hello world - 2!
import plotly.express as px

df = px.data.iris()
fig = px.scatter_matrix(df, dimensions=["sepal_width", "sepal_length", "petal_width", "petal_length"], color="species")
fig.layout.margin.t = 10
fig