Load and return the digits dataset (classification).
Each datapoint is a 8x8 image of a digit.
This is a copy of the test set of the UCI ML hand-written digits datasets https://archive.ics.uci.edu/ml/datasets/Optical+Recognition+of+Handwritten+Digits
Read more in the User Guide.
The number of classes to return. Between 0 and 10.
If True, returns (data, target)
instead of a Bunch object. See below for more information about the data
and target
object.
Added in version 0.18.
If True, the data is a pandas DataFrame including columns with appropriate dtypes (numeric). The target is a pandas DataFrame or Series depending on the number of target columns. If return_X_y
is True, then (data
, target
) will be pandas DataFrames or Series as described below.
Added in version 0.23.
Bunch
Dictionary-like object, with the following attributes.
The flattened data matrix. If as_frame=True
, data
will be a pandas DataFrame.
The classification target. If as_frame=True
, target
will be a pandas Series.
The names of the dataset columns.
The names of target classes.
Added in version 0.20.
Only present when as_frame=True
. DataFrame with data
and target
.
Added in version 0.23.
The raw image data.
The full description of the dataset.
return_X_y
is True
A tuple of two ndarrays by default. The first contains a 2D ndarray of shape (1797, 64) with each row representing one sample and each column representing the features. The second ndarray of shape (1797) contains the target samples. If as_frame=True
, both arrays are pandas objects, i.e. X
a dataframe and y
a series.
Added in version 0.18.
Examples
To load the data and visualize the images:
>>> from sklearn.datasets import load_digits >>> digits = load_digits() >>> print(digits.data.shape) (1797, 64) >>> import matplotlib.pyplot as plt >>> plt.matshow(digits.images[0], cmap="gray") <...> >>> plt.show()
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4