Here's the code to create a count plot with region on the y-axis using Matplotlib and Seaborn:
```python
import matplotlib.pyplot as plt
import seaborn as sns
sns.countplot(y=df["region"])
plt.show()
```
We first import both Matplotlib and Seaborn. Then, we use the `countplot` function from Seaborn to create a count plot of `