Note
Click here to download the full example code
Wine Classification Dataset VisualizationΒΆ
Target looks like classification
Linear Discriminant Analysis training set score: 1.000
# sphinx_gallery_thumbnail_number = 4
import matplotlib.pyplot as plt
from sklearn.datasets import load_wine
from dabl import plot
from dabl.utils import data_df_from_bunch
wine_bunch = load_wine()
wine_df = data_df_from_bunch(wine_bunch)
plot(wine_df, target_col='target')
plt.show()
Total running time of the script: ( 0 minutes 3.429 seconds)