diff --git a/Jenkinsfile b/Jenkinsfile index 51eb644..60bb342 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,8 +20,7 @@ pipeline { } stage('archiveArtifacts') { steps { - archiveArtifacts 'wer.png' - archiveArtifacts 'srr.png' + archiveArtifacts 'plot.png' } } } diff --git a/plot.py b/plot.py index 40f00c7..e294f9e 100644 --- a/plot.py +++ b/plot.py @@ -1,8 +1,5 @@ import matplotlib.pyplot as plt -fig_wer, ax_wer = plt.subplots() -fig_srr, ax_srr = plt.subplots() - X1, Y1 = [], [] X2, Y2 = [], [] y_num=1 @@ -11,16 +8,18 @@ for line in open('wer.txt', 'r'): X1.append(y_num) y_num=y_num+1 -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'): Y2.append(float(line[:-1])) X2.append(y_num) y_num=y_num+1 -ax_srr.plot(X2, Y2) -ax_srr.set_title("SRR") -fig_srr.savefig('srr.png') \ No newline at end of file +fig, ax = plt.subplots() +plt.xticks(probs) +plt.title("WER SRR") +plt.xlabel("Number") +plt.ylabel("Value") +plt.plot(X1, Y1) +plt.plot(X1, Y2) +ax.legend(["WER", "SRR"]) +plt.savefig('plot.png') \ No newline at end of file