f1af6da7f1
Some checks failed
s434804-evaluation/pipeline/head There was a failure building this commit
6 lines
156 B
Python
6 lines
156 B
Python
import pandas as pd
|
|
from matplotlib import pyplot as plt
|
|
|
|
df = pd.read_csv("evaluation.csv")
|
|
df.plot(x="build", y="rmse")
|
|
plt.savefig("evaluation_plot.png") |