数字数据集#
该数据集由 1797 张 8x8 图像组成。 每个图像(如下所示)都是一个手写数字。 为了利用这样的 8x8 图像,我们必须首先将其转换为长度为 64 的特征向量。
有关此数据集的更多信息,请参见此处。
# Code source: Gaël Varoquaux
# Modified for documentation by Jaques Grobler
# License: BSD 3 clause
import matplotlib.pyplot as plt
from sklearn import datasets
# Load the digits dataset
digits = datasets.load_digits()
# Display the last digit
plt.figure(1, figsize=(3, 3))
plt.imshow(digits.images[-1], cmap=plt.cm.gray_r, interpolation="nearest")
plt.show()
脚本总运行时间:(0 分钟 0.064 秒)
相关示例