mirror of
https://github.com/status-im/das-research.git
synced 2025-02-24 12:28:11 +00:00
23 lines
549 B
Python
23 lines
549 B
Python
|
#!/bin/python3
|
||
|
|
||
|
class Visualizer:
|
||
|
|
||
|
def __init__(self, execID):
|
||
|
self.execID = execID
|
||
|
self.folderPath = "results/"+self.execID
|
||
|
|
||
|
def plottingData(self):
|
||
|
data = []
|
||
|
print("Getting data from the folder...")
|
||
|
return data
|
||
|
|
||
|
def similarKeys(self, data):
|
||
|
filteredKeys = []
|
||
|
print("Getting filtered keys from data...")
|
||
|
return filteredKeys
|
||
|
|
||
|
def plotHeatmaps(self):
|
||
|
data = self.plottingData()
|
||
|
filteredKeys = self.similarKeys(data)
|
||
|
print("Plotting heatmaps...")
|