During using scatter, when alpha param is set, facecolor='none' is ignored. eg:
fig,ax=pplt.subplot()
ax.scatter(0.4, 0.5, 100, fc='none', ec='k', alpha=.2)
ax.scatter(0.5, 0.5, 100, fc="none", ec="k")
ax.scatter(0.6, 0.5, 100, fc="none", ec="k", alpha=1)
fig.save('t2.png')
All 3 dots should have none facecolor` and black ecgecolor with difference alpha. But I got:
