This commit is contained in:
s460941 2020-04-24 07:42:07 +02:00
parent 3cc77634ce
commit 163e24a2a0
2 changed files with 18 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -19,6 +19,6 @@ pipeline {
archiveArtifacts 'wer.txt'
archiveArtifacts 'srr.txt'
}
}
}
}
}

17
plot.py Normal file
View File

@ -0,0 +1,17 @@
import pandas as pd
import numpy as np
wer = pd.read_csv('wer.txt')
wer = pd.DataFrame(wer)
srr = pd.read_csv('srr.txt')
srr = pd.DataFrame(srr)
import matplotlib
import matplotlib.pyplot
import matplotlib.pyplot as plt
wx = plt.plot(wer.index,wer,color='red')
plt.savefig("wx.png")
sx = plt.plot(srr.index,srr,color='blue')
plt.savefig("sx.png")