Exemple simple pour tracer Python Treemap
import matplotlib.pyplot as plt
import squarify
import pandas as pd
square_size = [10, 20, 30, 40, 50]
squarify.plot(square_size)
plt.show()
Unsightly Unicorn