Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 5, 2021 12:23
Embed
What would you like to do?
import plotly.express as px
data = px.data.tips()
figure = px.sunburst(data, path=["day", "sex"], values="total_bill")
figure.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment