Q：各商品ごとに色付けしてほしいです．
A：
```python
# 散布図を描画します．商品ごとに色を分けます．

scatter = sns.scatterplot(x='age', y='sales', hue='product',hue_order=product_names, data=df)
plt.title('Age vs Sales')

# Place the legend to the right of the plot
plt.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.)

plt.show()

```
