Home > Blockchain >  How to construct a temporal network using python
How to construct a temporal network using python

Time:11-22

I have a data for different stations at different days.

Station_start    Station_end    Day    Hour
A                B              1      14
B                C              1      10
C                A              1      10
B                A              2      15
A                C              2      13
D                E              2      12
E                B              2      14
F                C              3      12

I want to construct a dynamic / interactive network, where the network connections change according to day.

I found an example of it in the tutorial of pathpy: enter image description here

  • Related