我想绘制这样的 swarmplot
我可以强调具体点。但我希望所有的点都得到一种颜色图。并且具体点有各自的颜色。我正在尝试色调和调色板,但它不起作用。
palette = sns.light_palette("purple", reverse=False, n_colors=df[typeId].max())
ax = sns.swarmplot(x = df[typeId], ax = ax, hue = df[typeId], alpha = 0.8, size = 8)
axData = ax.get_children()
for a in axData:
if type(a) is matplotlib.collections.PathCollection:
offsets = a.get_offsets()
break
ax.scatter(offsets[index,0], offsets[index,1], marker='o', color='red', zorder=10, s=200, edgecolor = "white")
ax.text(offsets[index,0], offsets[index,1]-0.1,"Value: " + str(player[typeId]) + "\nPercentile rank: " + str("{0:.2f}".format(player[typeRank]*100)), ha = "center", color = "white", zorder = 9, fontproperties=prop_bold,fontsize=10)