Skip to content

Instantly share code, notes, and snippets.

View krystofl's full-sized avatar

Krystof Litomisky krystofl

View GitHub Profile
@krystofl
krystofl / radar.py
Last active August 29, 2015 14:02 — forked from sergiobuj/Radar-Chart How-to
Make radar charts with matplotlib
'''
# forked from https://gist.github.com/sergiobuj/6721187
## Usage:
import matplotlib.pyplot as plt
from radar import get_radar_graph
labels = ['v1', 'v2', 'v3', 'v4', 'v5', 'v6', 'v7', 'v8', 'v9']
values = [1, 1, 2, 7, 4, 0, 3, 10, 6]
maxval = 10