plot RCdist only if saveRCdist

This commit is contained in:
Csaba Kiraly 2023-07-15 12:20:13 +00:00
parent 866229f8e8
commit 4f5205e247
No known key found for this signature in database
GPG Key ID: 0FE274EE8C95166E
1 changed files with 2 additions and 1 deletions

View File

@ -71,7 +71,8 @@ class Visualizor:
self.plotSentData(result, plotPath)
self.plotRecvData(result, plotPath)
self.plotDupData(result, plotPath)
self.plotRowCol(result, plotPath)
if self.config.saveRCdist:
self.plotRowCol(result, plotPath)
def plotMissingSamples(self, result, plotPath):
"""Plots the missing samples in the network"""