test_plotly_in_quarto

Author

Saideep Gona

Published

June 12, 2024

Code
import plotly.express as px
import plotly.io as pio

fig = px.bar(x=["a", "b", "c"], y=[1, 3, 2])
fig.show()