From d80de411bf2d7a75b833d0539e8a3f10a5de2e99 Mon Sep 17 00:00:00 2001 From: "alicja.m.musial" Date: Fri, 3 Apr 2020 20:33:20 +0200 Subject: [PATCH] plot 13 --- plotCreator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plotCreator.py b/plotCreator.py index 9ceeded..01db79a 100644 --- a/plotCreator.py +++ b/plotCreator.py @@ -11,7 +11,7 @@ def readFile(file): def createplotWER(): - countL, y2 = readFile('werForPlot') + countL, y2 = readFile('werForPlot.txt') # Data for plotting x = np.arange(1, countL, 1) y = y2 @@ -29,7 +29,7 @@ def createplotWER(): def createplotSRR(): - countL, y2 = readFile('srrForPlot') + countL, y2 = readFile('srrForPlot.txt') # Data for plotting x = np.arange(1, countL) y = y2