File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 3
3
Plot randomly generated classification dataset
4
4
==============================================
5
5
6
- Plot several randomly generated 2D classification datasets.
7
- This example illustrates the :func:`datasets.make_classification`
8
- :func:`datasets.make_blobs` and :func:`datasets.make_gaussian_quantiles`
9
- functions.
6
+ This example plots several randomly generated classification datasets.
7
+ For easy visualization, all datasets have 2 features, plotted on the x and y
8
+ axis. The color of each point represents its class label.
10
9
11
- For ``make_classification``, three binary and two multi-class classification
12
- datasets are generated, with different numbers of informative features and
13
- clusters per class. """
10
+ The first 4 plots use the :func:`~sklearn.datasets.make_classification` with
11
+ different numbers of informative features, clusters per class and classes.
12
+ The final 2 plots use :func:`~sklearn.datasets.make_blobs` and
13
+ :func:`~sklearn.datasets.make_gaussian_quantiles`.
14
+ """
14
15
15
16
print (__doc__ )
16
17
You can’t perform that action at this time.
0 commit comments