ECDF Plot

Bandwidth Usage ECDF

Dark theme ECDF showing network bandwidth consumption

Output
Bandwidth Usage ECDF
Python
import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots(figsize=(10, 6), facecolor='#0a0a0f')
ax.set_facecolor('#0a0a0f')

np.random.seed(42)
bandwidth = np.random.lognormal(3, 1, 1000)

ax.ecdf(bandwidth, color='#06b6d4', linewidth=2.5)

cap = 100
ax.axvline(x=cap, color='#ef4444', linestyle='--', linewidth=2, label=f'Cap: {cap} Mbps')

ax.set_xlabel('Bandwidth Usage (Mbps)', fontsize=12, color='white')
ax.set_ylabel('Cumulative Probability', fontsize=12, color='white')
ax.set_title('Network Bandwidth Usage ECDF', fontsize=16, fontweight='bold', color='white', pad=20)
ax.tick_params(colors='white')
ax.set_xlim(0, 150)
ax.legend(facecolor='#1a1a2f', edgecolor='#333', labelcolor='white')
ax.grid(True, alpha=0.2, color='white')

for spine in ax.spines.values():
    spine.set_color('#333')

plt.tight_layout()
Library

Matplotlib

Category

Statistical

Did this help you?

Support PyLucid to keep it free & growing

Support