Matrix Analysis
Perform sector-specific or economy wide analysis to identify key contributing sectors and pathways.

Visualisation
Explore results with interactive visualisations with icicle plots.

Multi-Satellite Support
Analyze multiple environmental flows (GHG, water, energy) simultaneously.
Quick Example
from fastspa import SPA# Your A-matrix and direct intensitiespaths = SPA(A, emissions).analyze(sector=42, depth=8)# Explore resultsfor path in paths.top(10):print(f"{path.contribution:.2%}: {' → '.join(path.sectors)}")# Export to DataFramedf = paths.to_dataframe()
