MCPcopy Create free account
hub / github.com/spotify/chartify / plot_radar_area

Function plot_radar_area

chartify/examples.py:993–1002  ·  view source on GitHub ↗

Radar area example

()

Source from the content-addressed store, hash-verified

991
992@_print_source
993def plot_radar_area():
994 """Radar area example"""
995 import chartify
996
997 # Generate example data
998 data = chartify.examples.example_data()
999 total_by_fruit_and_country = data.groupby(["fruit", "country"])["quantity"].sum().reset_index()
1000 print(total_by_fruit_and_country.head())
1001 """Print break"""
1002 _radar_area_example_1(total_by_fruit_and_country)
1003
1004
1005@_print_source

Callers

nothing calls this directly

Calls 1

_radar_area_example_1Function · 0.85

Tested by

no test coverage detected