1

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 enter image description here

4

1 に答える 1

0

ポイントの密度が高いため、不透明度を下げることでクラスターを選択できる場合があります

plt.plot(pltfColor, 'r.', alpha=.1, mec='none')

hexbin@imscが示唆するように、密度プロットも作成します

于 2012-08-15T00:55:47.560 に答える