As the title states I want to impose a circle over my scatter plot
let's say I have a df like this
+--------+---------+------+
| X_GRID | Y_GRID | GRP |
+--------+---------+------+
| 1 | 0 | HOT |
| 2 | -1 | COLD |
| 1 | 2 | COLD |
| 2 | 1 | HOT |
+--------+---------+------+
and I use it to create a scatter plot like so
ax = sns.scatterplot(data=df, hue='GRP', x='X_GRID', y='Y_GRID')
ax.set(xlim=(-4, 4))
ax.set(ylim=(-4, 4))
How would I go about imposing a red circle (or any color) around my scatter plot of say radius = 2 at around (0,0)?