diff --git a/plotsrr.py b/plotsrr.py index e2a49c2..7eda231 100644 --- a/plotsrr.py +++ b/plotsrr.py @@ -8,7 +8,7 @@ i = 0 with open('averagesrr.txt','r') as csvfile: plots = csv.reader(csvfile, delimiter=' ') for row in plots: - x.append(float(round(row[0], 2))) + x.append(float(row[0])) y.append(int(i)) i=i+1 diff --git a/plotwer.py b/plotwer.py index 23155c9..9ce0689 100644 --- a/plotwer.py +++ b/plotwer.py @@ -8,7 +8,7 @@ i = 0 with open('averagewer.txt','r') as csvfile: plots = csv.reader(csvfile, delimiter=' ') for row in plots: - x.append(float(round(row[0], 2))) + x.append(float(row[0])) y.append(int(i)) i=i+1