Skip to content

Sunburst + treemap continuous colorscale example #177

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 9, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
updated examples
  • Loading branch information
emmanuelle committed Nov 8, 2019
commit 6a9a9600c727ddc74b5772a9525d3610b1a1de56
2 changes: 1 addition & 1 deletion python/sunburst-charts.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ print(df.head())

levels = ['salesperson', 'county', 'region'] # levels used for the hierarchical chart
color_columns = ['sales', 'calls']
value_column = 'sales'
value_column = 'calls'

def build_hierarchical_dataframe(df, levels, value_column, color_columns=None):
"""
Expand Down
2 changes: 1 addition & 1 deletion python/treemaps.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ print(df.head())

levels = ['salesperson', 'county', 'region'] # levels used for the hierarchical chart
color_columns = ['sales', 'calls']
value_column = 'sales'
value_column = 'calls'

def build_hierarchical_dataframe(df, levels, value_column, color_columns=None):
"""
Expand Down