It's hard to satisfactorily summarise and visualise data in three dimensions. Specifically here we are concerned with flow data over time. That is imagine we have some unit, often a geography or individual, say countries. We are interested in the flows of something (goods, migration, information whatever) between countries and how it has changed over time.
The best way I have found of visualising this data is in a Chord diagram animation - a GIF. Like the one below which looks at trade in endangered Crocodiles (or parts thereof) between the 10 largest players since 1975.
from IPython.display import display, Image
with open('trade_crocs.gif','rb') as f:
display(Image(data=f.read(), format='png'))