PAMI is a Python library containing 100+ algorithms to discover useful patterns in various databases across multiple computing platforms. (Active)
Previous | 🏠 Home | Next |
A temporal database is a collection of transactions ordered by their timestamp. A sample temporal database generated from the set of items, I={a,b,c,d,e,f}, is shown in below table:
TID | Timestamp | Transactions |
---|---|---|
1 | 1 | a, b, c |
2 | 2 | d, e |
3 | 4 | a, e, f |
4 | 7 | d, f, g |
timestamp<sep>item1<sep>item2<sep>...<sep>itemN
1 a b c
2 d e
4 a e f
7 d f g