PAMI is a Python library containing 100+ algorithms to discover useful patterns in various databases across multiple computing platforms. (Active)
Previous | 🏠 Home | Next |
In this page, we describe the methodology to view top-_k_ geo-referenced (or spatially) interesting patterns in a database. The top-_k_ patterns were selected based on the number of items in a pattern.
Note: This article assumes that the user has already mined and stored the interesting patterns in a geo-referenced database.
iFile = "interestingPatternsDiscovered.csv"
k=5
#import the program
from PAMI.extras.graph import visualizePatterns as visual
obj = visual.visualizePatterns(iFile, k)
obj.visualize()