From 86a800c688846d46b7d1e361c16b258720c5af77 Mon Sep 17 00:00:00 2001 From: Adrianna Zaleska Date: Sun, 19 Apr 2020 22:13:53 +0200 Subject: [PATCH] script.py --- script.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/script.py b/script.py index 80b3cfb..a1f79d3 100644 --- a/script.py +++ b/script.py @@ -1,25 +1,26 @@ import matplotlib.pyplot as plt -fig_wer, fig_srr = plt.subplots() +fig_wer, ax_wer = plt.subplots() +fig_srr, ax_srr = plt.subplots() X1, Y1 = [], [] X2, Y2 = [], [] y_num=1 for line in open('wer.txt', 'r'): - X1.append(line) - Y1.append(y_num) + Y1.append(line) + X1.append(y_num) y_num=y_num+1 -fig_wer.plot(X1, Y1) -fig_wer.set_title("WER") +ax_wer.plot(X1, Y1) +ax_wer.set_title("WER") fig_wer.savefig('wer.png') y_num=1 for line in open('srr.txt', 'r'): - X2.append(line) - Y2.append(y_num) + Y2.append(line) + X2.append(y_num) y_num=y_num+1 -fig_srr.plot(X2, Y2) -fig_srr.set_title("SRR") -fig_srr.savefig('srr.png') \ No newline at end of file +ax_srr.plot(X2, Y2) +ax_srr.set_title("SRR") +fig_srr.savefig('srr.png')