Skip to content

Commit 50fea07

Browse files
committed
DOC document copy_X parameter from LinearRegression
1 parent 12f63da commit 50fea07

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

sklearn/linear_model/base.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,9 @@ class LinearRegression(LinearModel, RegressorMixin):
307307
normalize : boolean, optional, default False
308308
If True, the regressors X will be normalized before regression.
309309
310+
copy_X : boolean, optional, default True
311+
If True, X will be copied; else, it may be overwritten.
312+
310313
Attributes
311314
----------
312315
coef_ : array, shape (n_features, ) or (n_targets, n_features)

0 commit comments

Comments
 (0)