import seaborn as sns
import pandas as pd
import matplotlib.pyplot as plt
def plot_pokemon_pairplot():
URL = "https://raw.githubusercontent.com/KeithGalli/pandas/master/pokemon_data.csv"
pokemon_data = pd.read_csv(URL)
sns.pairplot(pokemon_data, hue='Type 1', vars=['HP', 'Attack', 'Defense', 'Speed'])
plt.suptitle('Pair Plot Analysis of Pokemon Stats', y=1.02)
plt.show()
plot_pokemon_pairplot()