Skip to content
Snippets Groups Projects
Commit 6cd3ab0a authored by Gael Varoquaux's avatar Gael Varoquaux
Browse files

DOC/MISC: correct docstring on digits loading code.


git-svn-id: https://scikit-learn.svn.sourceforge.net/svnroot/scikit-learn/trunk@692 22fbfee3-77ab-4535-9bad-27d1bd3bc7d8
parent 2df46b28
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ Base IO code for all datasets ...@@ -4,7 +4,7 @@ Base IO code for all datasets
# Copyright (c) 2007 David Cournapeau <cournape@gmail.com> # Copyright (c) 2007 David Cournapeau <cournape@gmail.com>
# 2010 Fabian Pedregosa <fabian.pedregosa@inria.fr> # 2010 Fabian Pedregosa <fabian.pedregosa@inria.fr>
# # License: Simplified BSD
import csv import csv
import os import os
...@@ -71,7 +71,7 @@ def load_digits(): ...@@ -71,7 +71,7 @@ def load_digits():
------- -------
data : Bunch data : Bunch
Dictionnary-like object, the interesting attributes are: Dictionnary-like object, the interesting attributes are:
'data', the data to learn, `raw_data`, the images corresponding 'data', the data to learn, `images`, the images corresponding
to each sample, 'target', the classification labels for each to each sample, 'target', the classification labels for each
sample, 'target_names', the meaning of the labels, and 'DESCR', sample, 'target_names', the meaning of the labels, and 'DESCR',
the full description of the dataset. the full description of the dataset.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment