8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0eef8 commit dc9d0ebCopy full SHA for dc9d0eb
doc/modules/linear_model.rst
@@ -37,7 +37,7 @@ solves a problem of the form:
37
:align: center
38
:scale: 50%
39
40
-:class:`LinearRegression` will take in its ``fit`` method arrays X, y
+:class:`LinearRegression` will take in its ``fit`` method arrays ``X``, ``y``
41
and will store the coefficients :math:`w` of the linear model in its
42
``coef_`` member::
43
@@ -114,7 +114,7 @@ of shrinkage and thus the coefficients become more robust to collinearity.
114
115
116
As with other linear models, :class:`Ridge` will take in its ``fit`` method
117
-arrays X, y and will store the coefficients :math:`w` of the linear model in
+arrays ``X``, ``y`` and will store the coefficients :math:`w` of the linear model in
118
its ``coef_`` member::
119
120
>>> from sklearn import linear_model
0 commit comments