Skip to content

Instantly share code, notes, and snippets.

View jibols's full-sized avatar

Ajibola Vincent jibols

View GitHub Profile
@jibols
jibols / Radar.py
Created September 26, 2019 08:50 — forked from anthonydouc/Radar.py
Radar chart using bokeh
import numpy as np
from bokeh.plotting import figure, show, output_file
from bokeh.models import ColumnDataSource, LabelSet
num_vars = 9
theta = np.linspace(0, 2*np.pi, num_vars, endpoint=False)
# rotate theta such that the first axis is at the top
theta += np.pi/2