mirror of
https://github.com/langchain-ai/markdown-exec.git
synced 2026-08-26 18:46:31 -04:00
5 lines
134 B
Python
5 lines
134 B
Python
import plotly.express as px
|
|
|
|
fig = px.bar(x=["a", "b", "c"], y=[1, 3, 2])
|
|
print(fig.to_html(full_html=False, include_plotlyjs="cdn"))
|