Polar Chart
Developer Skills Radar
Technical proficiency across programming domains with neon glow effect
Output
Python
import matplotlib.pyplot as plt
import numpy as np
skills = ['Python', 'JavaScript', 'SQL', 'DevOps', 'ML/AI', 'Frontend', 'Backend', 'Cloud']
values = [95, 78, 85, 70, 88, 65, 90, 75]
# Close the radar
values += values[:1]
angles = np.linspace(0, 2 * np.pi, len(skills), endpoint=False).tolist()
angles += angles[:1]
fig, ax = plt.subplots(figsize=(10, 10), subplot_kw=dict(polar=True), facecolor='#0a0a0f')
ax.set_facecolor('#0a0a0f')
# Glow effect - multiple layers
for lw, alpha in [(12, 0.1), (8, 0.15), (5, 0.25), (2.5, 0.5)]:
ax.plot(angles, values, color='#27D3F5', linewidth=lw, alpha=alpha)
ax.plot(angles, values, color='#27D3F5', linewidth=2, alpha=1)
ax.fill(angles, values, color='#27D3F5', alpha=0.25)
# Styling
ax.set_xticks(angles[:-1])
ax.set_xticklabels(skills, fontsize=11, color='white', fontweight='500')
ax.set_ylim(0, 100)
ax.set_yticks([25, 50, 75, 100])
ax.set_yticklabels(['25', '50', '75', '100'], fontsize=9, color='#666666')
ax.spines['polar'].set_color('#555555')
ax.grid(color='#555555', linewidth=0.8, alpha=0.7)
ax.set_title('Developer Skills Radar', fontsize=16, color='white', fontweight='bold', pad=20, y=1.08)
plt.tight_layout()
plt.show()
Library
Matplotlib
Category
Part-to-Whole
More Polar Chart examples
☕