Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

data is attachedsample of output attached[I want the graph to be similar to the attached png file and the data is attached as well.][]

fig = plt.figure()
ax1 = fig.add_subplot(111)[enter image description here][1]
plt.scatter(sample_data.ORI_PL,sample_data.ORI_ML,marker="o",c='gray')
plt.scatter(sample_data.ORILOWER_PL,sample_data.ORILOWER_ML,marker="+", c='b'   )
plt.scatter(sample_data.ORIHIGH_PL, sample_data.ORIHIGH_ML, marker ="_", c='r'  )
#palette['BLUE','YELLOW','GREEN','RED','ORANGE']
plt.xlabel("Physical Luminance")
plt.ylabel("Matched Luminance")
plt.show()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...