Radar Chart
Streaming Platform Content Analysis
Dark-themed radar chart comparing streaming platforms across content library, originals quality, price, UI/UX, and global availability.
Output
Python
import matplotlib.pyplot as plt
import numpy as np
# Streaming metrics
categories = ['Content Library', 'Original Content', 'Price Value', 'UI/UX',
'Streaming Quality', 'Offline Viewing', 'Global Availability', 'Family Features']
netflix = [88, 95, 70, 92, 95, 90, 95, 85]
disney = [75, 88, 85, 85, 90, 88, 90, 98]
hbo = [70, 98, 65, 78, 92, 85, 75, 70]
prime = [95, 80, 95, 75, 88, 85, 92, 80]
N = len(categories)
angles = np.linspace(0, 2 * np.pi, N, endpoint=False).tolist()
angles += angles[:1]
netflix += netflix[:1]
disney += disney[:1]
hbo += hbo[:1]
prime += prime[:1]
fig, ax = plt.subplots(figsize=(10, 10), subplot_kw=dict(polar=True), facecolor='#0a0a0f')
ax.set_facecolor('#0a0a0f')
ax.plot(angles, netflix, 'o-', linewidth=2.5, color='#C82909', label='Netflix', markersize=7)
ax.fill(angles, netflix, alpha=0.2, color='#C82909')
ax.plot(angles, disney, 's-', linewidth=2.5, color='#276CF5', label='Disney+', markersize=7)
ax.fill(angles, disney, alpha=0.2, color='#276CF5')
ax.plot(angles, hbo, '^-', linewidth=2.5, color='#5314E6', label='HBO Max', markersize=7)
ax.fill(angles, hbo, alpha=0.2, color='#5314E6')
ax.plot(angles, prime, 'D-', linewidth=2.5, color='#27D3F5', label='Prime Video', markersize=7)
ax.fill(angles, prime, alpha=0.2, color='#27D3F5')
ax.set_xticks(angles[:-1])
ax.set_xticklabels(categories, fontsize=10, color='#e2e8f0', fontweight='500')
ax.set_ylim(0, 100)
ax.yaxis.grid(True, color='#1e293b', linestyle='-', linewidth=0.8)
ax.xaxis.grid(True, color='#334155', linestyle='-', linewidth=0.5)
ax.spines['polar'].set_color('#334155')
ax.tick_params(axis='y', colors='#94a3b8')
ax.set_title('Streaming Platform Comparison', fontsize=16, color='#f8fafc',
fontweight='bold', pad=25)
ax.legend(loc='upper right', bbox_to_anchor=(1.22, 1.1), fontsize=10,
frameon=True, facecolor='#1e293b', edgecolor='#334155', labelcolor='#e2e8f0')
plt.tight_layout()
plt.show()
Library
Matplotlib
Category
Polar Charts
☕