Treemap
Annual Corporate Budget Allocation
Light-themed treemap showing annual corporate budget distribution across departments including R&D, marketing, operations, and HR.
Output
Python
import matplotlib.pyplot as plt
import squarify
import numpy as np
# Budget allocation (in millions)
labels = ['Engineering', 'Sales & Marketing', 'Operations', 'R&D',
'HR & Admin', 'IT Infrastructure', 'Legal', 'Finance']
sizes = [85, 65, 45, 55, 28, 32, 18, 22]
total = sum(sizes)
# Light theme colors from CLAUDE.md
colors = ['#276CF5', '#F5276C', '#6CF527', '#5314E6',
'#F5B027', '#27D3F5', '#C82909', '#27F5B0']
fig, ax = plt.subplots(figsize=(12, 8), facecolor='#ffffff')
ax.set_facecolor('#ffffff')
pct = [s/total*100 for s in sizes]
squarify.plot(sizes=sizes,
label=[f'{l}\n${s}M ({p:.1f}%)' for l, s, p in zip(labels, sizes, pct)],
color=colors, alpha=0.9, ax=ax,
text_kwargs={'fontsize': 10, 'color': 'white', 'fontweight': 'bold'})
ax.axis('off')
ax.set_title(f'Annual Budget Allocation - ${total}M Total',
fontsize=18, color='#1f2937', fontweight='bold', pad=20)
plt.tight_layout()
plt.show()
Library
Matplotlib
Category
Part-to-Whole
☕