In this Plotly tutorial, you will learn how to plot a sunburst chart in Python. You can use px.sunburst()
function to plot a sunburst chart.
Python
x
# Import Plotly Module
import plotly.express as px
# Import Dataset
dataset = px.data.gapminder().query("continent=='Oceania'")
# Sunburst Chart
plot = px.sunburst(dataset, path=['country', 'year'], values='pop')
# Show the Plot
plot.show()
Output:
