Plot another point on top of swarmplot
问题 I want to plot a "highlighted" point on top of swarmplot like this The swarmplot don't have the y-axis, so I have no idea how to plot that point. import seaborn as sns sns.set(style="whitegrid") tips = sns.load_dataset("tips") ax = sns.swarmplot(x=tips["total_bill"]) 回答1: This approach is predicated on knowing the index of the data point you wish to highlight, but it should work - although if you have multiple swarmplots on a single Axes instance it will become slightly more complex. import