My code has the line below
ax1.scatter(data1[0], data1[1], marker='o', s=20, color = ['k','b','g','r','m'], edgecolors= ['k','b','g','r','m']
I would like to have the marker = ('o','d','v','^','x')
for the different shapes, but this does not work. How can I revise my code like above to give the different shapes for the different individual points.