plot
This commit is contained in:
parent
3cc77634ce
commit
163e24a2a0
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -19,6 +19,6 @@ pipeline {
|
||||
archiveArtifacts 'wer.txt'
|
||||
archiveArtifacts 'srr.txt'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
17
plot.py
Normal file
17
plot.py
Normal 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")
|
||||
|
Loading…
Reference in New Issue
Block a user