ECDF Plot
CPU Utilization ECDF
Dark theme ECDF showing server CPU usage patterns
Output
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)
cpu_usage = np.clip(np.random.beta(2, 5, 1000) * 100, 0, 100)
ax.ecdf(cpu_usage, color='#f472b6', linewidth=2.5)
ax.axvline(x=70, color='#fbbf24', linestyle='--', linewidth=2, label='Warning (70%)')
ax.axvline(x=90, color='#ef4444', linestyle='--', linewidth=2, label='Critical (90%)')
ax.set_xlabel('CPU Utilization (%)', fontsize=12, color='white')
ax.set_ylabel('Cumulative Probability', fontsize=12, color='white')
ax.set_title('Server CPU Utilization', fontsize=16, fontweight='bold', color='white', pad=20)
ax.tick_params(colors='white')
ax.set_xlim(0, 100)
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
More ECDF Plot examples
☕