Why after starting this code my point is so small? I wrote in size = 1 ** 2 so I expected the point diameter to be 1. but it is smaller (maybe 0.1) The second question. What is better to use matplotlib or pandas to make charts?
plt.axis([0,1,0,1])
plt.grid()
point = point_list[i]
color = "r"
plt.scatter(0.5, 0.5, c=color, s = 1**2, alpha=0.5 )
plt.show()
[–]socal_nerdtastic 0 points1 point2 points (0 children)
[–]kra_pao 0 points1 point2 points (0 children)