I have three lists each containing cosine values of vectors, and each list has 49,742 data points. I used the flowing basic plotting but entire graph look very cluttered, How can I plot this with less clutter. I would love to draw these with smooth curves, if possible.
Sample of data in each list:
pltfColor = [0.837, 0.98, 0.032, 0.755,....,n]
Other two list contain similar data and all three lists has n=49742 number of data points
plt.plot(pltfColor, 'r.')
plt.plot(pltEdgeColor, 'b.')
plt.plot(pltTexture, 'g.')
plt.ylabel('cosine values')
plt.yscale('log')
plt.show()
Here is my current plot look like