Import seaborn as sns. Use seaborn's pairplot() on banknotes and set hue to be the name of the column containing the labels. Generate descriptive statistics for the banknotes authentication data. code example
Example: seaborn pairplot
>>> import seaborn as sns; sns.set(style="ticks", color_codes=True)
>>> iris = sns.load_dataset("iris")
>>> g = sns.pairplot(iris)