Skip to content

Commit

Permalink
Typo on doc for default value of solver for lda.LDA
Browse files Browse the repository at this point in the history
Fix a style issue on the documentation for the default value of the `solver` parameter for lda.LDA.

[sklearn.lda.LDA.html](http://scikit-learn.org/stable/modules/generated/sklearn.lda.LDA.html#sklearn.lda.LDA) displayed badly (cf screenshot).
  • Loading branch information
Naereen authored and Mbompr committed Oct 23, 2015
1 parent 2492dd0 commit dbb418b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sklearn/discriminant_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ class LinearDiscriminantAnalysis(BaseEstimator, LinearClassifierMixin,
----------
solver : string, optional
Solver to use, possible values:
- 'svd': Singular value decomposition (default). Does not compute the
covariance matrix, therefore this solver is recommended for
data with a large number of features.
- 'svd': Singular value decomposition (default).
Does not compute the covariance matrix, therefore this solver is
recommended for data with a large number of features.
- 'lsqr': Least squares solution, can be combined with shrinkage.
- 'eigen': Eigenvalue decomposition, can be combined with shrinkage.
Expand Down

0 comments on commit dbb418b

Please sign in to comment.