Created
December 19, 2018 17:58
-
-
Save RyotaBannai/5ab30c48306144c0848b0ad3e3115ee1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _, axes = plt.subplots(2, 8, figsize=(8, 2), | |
| subplot_kw={'xticks':[], 'yticks':[]}, | |
| gridspec_kw=dict(hspace=0.1, wspace=0.1)) | |
| for i, ax in enumerate(axes.flat): | |
| ax.imshow(digits.data[i].reshape(8, 8), | |
| cmap='binary', interpolation='nearest', clim=(0, 16)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment