【发布时间】:2017-09-14 21:02:13
【问题描述】:
我在 seaborn 中使用点图。
import seaborn as sns
sns.set_style("darkgrid")
tips = sns.load_dataset("tips")
ax = sns.pointplot(x="time", y="total_bill", hue="smoker",data=tips)
我想注释所有的点。如果中间有点,如果有意义的话,我想标记中间的点以及线的末端。
非常感谢!
【问题讨论】: