Merge pull request #65 from codex-storage/fix-plot-range

progress plot: always use y range 0..1
This commit is contained in:
Csaba Kiraly 2024-05-13 23:29:21 +02:00 committed by GitHub
commit 93e07e1838
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -782,11 +782,7 @@ class Visualizor:
conf["data"] = [vector1, vector2, vector3]
conf["xdots"] = [x*self.config.stepDuration for x in range(len(vector1))]
conf["path"] = plotPath+"/nodesReady.png"
maxi = 0
for v in conf["data"]:
if max(v) > maxi:
maxi = max(v)
conf["yaxismax"] = maxi
conf["yaxismax"] = 1
plotData(conf)
print("Plot %s created." % conf["path"])