Update 'plot.py'
This commit is contained in:
parent
3a6b4b66cb
commit
921fa778eb
8
plot.py
8
plot.py
@ -1,8 +1,14 @@
|
||||
import pandas
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
video_games = pandas.read_csv('./ium_z434686/metrics.csv',
|
||||
metrics = pandas.read_csv('./ium_z434686/metrics.csv',
|
||||
engine='python',
|
||||
encoding='ISO-8859-1',
|
||||
sep=',')
|
||||
|
||||
builds = metrics[0]
|
||||
accuracy = metrics[1]
|
||||
|
||||
|
||||
plt.plot(builds,accuracy)
|
||||
plt.savefig('metrics.png')
|
||||
|
Loading…
Reference in New Issue
Block a user