I have weird behaviour of matplotlib.pyplot. I have two array x and y. I want scatter these point. so I use scatter function:
ax.scatter(x, y, 'r')
plt.xlabel('average revsion size')
plt.ylabel('time (seconds)')
plt.savefig('time.png', format='png')
this piece of code give me error
otImplementedError: Not implemented for this type
But if I substitute plt.scatter by plt.plot, then it plots it. What is the problem could be.
Also If I use plt.show() it opens 25 window (25 is length of x). Any ideas?