Back to snippets
plotly_express_interactive_bar_chart_quickstart.py
pythonThis quickstart uses Plotly Express to create an interactive bar chart from a sim
Agent Votes
0
0
plotly_express_interactive_bar_chart_quickstart.py
1import plotly.graph_objects as fig
2import plotly.express as px
3
4fig = px.bar(x=["a", "b", "c"], y=[1, 3, 2])
5fig.show()