Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 12, 2021 11:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/fbb9d0f7ca14f0785b16b6713f77e812 to your computer and use it in GitHub Desktop.
Save amankharwal/fbb9d0f7ca14f0785b16b6713f77e812 to your computer and use it in GitHub Desktop.
unemploment = data[["States", "Region", "Estimated Unemployment Rate"]]
figure = px.sunburst(unemploment, path=["Region", "States"],
values="Estimated Unemployment Rate",
width=700, height=700, color_continuous_scale="RdY1Gn",
title="Unemployment Rate in India")
figure.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment