Plotly#
Interactive plots from Plotly can be embedded with plotly
from plix import Slide
import plotly.express as px
df = px.data.iris()
fig = px.scatter(df, x="sepal_width", \
y="sepal_length", \
color="species")
Slide().plotly(fig).show()