Boxplot

Drone Flight Time

Flight duration analysis for autonomous drone fleet

Output
Drone Flight Time
Python
import matplotlib.pyplot as plt
import numpy as np

np.random.seed(42)
drones = ['Scout', 'Cargo', 'Survey', 'Racing', 'Delivery']
data = [
    np.random.normal(25, 3, 120),
    np.random.normal(18, 4, 120),
    np.random.normal(35, 5, 120),
    np.random.normal(12, 2, 120),
    np.random.normal(22, 3, 120)
]

fig, ax = plt.subplots(figsize=(10, 6), dpi=100)
ax.set_facecolor('#0d1117')
fig.patch.set_facecolor('#0d1117')

colors = ['#6CF527', '#27F5B0', '#27D3F5', '#F5276C', '#F5B027']
bp = ax.boxplot(data, widths=0.55, patch_artist=True, showfliers=False,
                medianprops=dict(color='white', linewidth=2.5))

for patch, color in zip(bp['boxes'], colors):
    patch.set_facecolor(color)
    patch.set_alpha(0.8)
    patch.set_edgecolor(color)
    patch.set_linewidth(1.5)
for i, color in enumerate(colors):
    bp['whiskers'][i*2].set_color(color)
    bp['whiskers'][i*2+1].set_color(color)
    bp['caps'][i*2].set_color(color)
    bp['caps'][i*2+1].set_color(color)

for i, d in enumerate(data):
    ax.scatter([i+1]*len(d), d, alpha=0.15, s=8, color=colors[i], zorder=1)

ax.set_xticklabels(drones)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['left'].set_color('#333333')
ax.spines['bottom'].set_color('#333333')
ax.yaxis.grid(True, color='#1a1a3f', linewidth=0.5, zorder=0)
ax.set_axisbelow(True)
ax.tick_params(axis='both', colors='#888888', labelsize=9, length=0, pad=8)
ax.set_ylabel('Flight Time (minutes)', fontsize=11, color='white', fontweight='500')
ax.set_title('Drone Fleet Flight Duration', fontsize=14, color='white', fontweight='bold', pad=15)

plt.tight_layout()
plt.show()
Library

Matplotlib

Category

Statistical

Did this help you?

Support PyLucid to keep it free & growing

Support