This example loads in some data from the scikit-learn digits dataset and plots it using t-SNE.
# Code source: Andrew Heusser
# License: MIT
from sklearn import datasets
import hypertools as hyp
digits = datasets.load_digits(n_class=6)
data = digits.data
group = digits.target.astype('str')
hyp.plot(data, '.', model='TSNE', group=group, ndims=2)
Total running time of the script: ( 0 minutes 5.902 seconds)