-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdraw.py
7 lines (6 loc) · 1.33 KB
/
draw.py
1
2
3
4
5
6
7
from matplotlib import pyplot as plt
a = [5.403839111328125, 5.407643795013428, 5.40580940246582, 5.400515079498291, 5.405730724334717, 5.408806324005127, 5.412967681884766, 5.416319847106934, 5.419325351715088, 5.42348575592041, 5.426356315612793, 5.430586814880371, 5.43351936340332, 5.4376325607299805, 5.441178321838379, 5.444757461547852, 5.448123931884766, 5.451116561889648, 5.455343723297119, 5.458592891693115, 5.462383270263672, 5.465783596038818, 5.469430923461914, 5.472855567932129, 5.476325988769531, 5.479855537414551, 5.483395576477051, 5.487545967102051, 5.490462779998779, 5.494107246398926, 5.495658874511719, 5.485037803649902, 5.488682270050049, 5.490598201751709, 5.494455337524414, 5.488631725311279, 5.4868669509887695, 5.491389751434326, 5.495911598205566, 5.500406742095947, 5.504785060882568, 5.503821849822998, 5.505824565887451, 5.509848594665527, 5.514225482940674, 5.518885135650635, 5.524127960205078, 5.515549659729004, 5.52006721496582, 5.524442195892334, 5.493917465209961, 5.461235046386719, 5.399078369140625, 5.353002071380615, 5.339355945587158, 5.342331886291504, 5.346208572387695, 5.348057746887207, 5.351237773895264, 5.353434085845947, 5.356122970581055, 5.357392311096191, 5.359472751617432]
plt.plot([i for i in range(len(a))], a, 'b', label='Q Values', linewidth=2.0)
plt.savefig("actions.png")
plt.show()
plt.close()