I am trying to display a pair plot by creating from scatter_matrix in pandas dataframe. This is how the pair plot is created:
# Create dataframe from data in X_t
This is also possible using seaborn:
import seaborn as sns df = sns.load_dataset("iris") sns.pairplot(df, hue="species")