Skip to content

Commit

Permalink
actually save api changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zach Griffith committed Mar 27, 2018
1 parent 60da532 commit d1ef89f
Showing 1 changed file with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1666,7 +1666,7 @@
"\n",
"<hr>\n",
"\n",
"*fit(X, y)*\n",
"*fit(X, y, **fit_params)*\n",
"\n",
"Perform feature selection and learn model from training data.\n",
"\n",
Expand All @@ -1681,14 +1681,18 @@
"\n",
" Target values.\n",
"\n",
"- `fit_params` : dict of string -> object, optional\n",
"\n",
" Parameters to pass to to the fit method of classifier.\n",
"\n",
"**Returns**\n",
"\n",
"- `self` : object\n",
"\n",
"\n",
"<hr>\n",
"\n",
"*fit_transform(X, y)*\n",
"*fit_transform(X, y, **fit_params)*\n",
"\n",
"Fit to training data and return the best selected features from X.\n",
"\n",
Expand All @@ -1699,6 +1703,14 @@
" Training vectors, where n_samples is the number of samples and\n",
" n_features is the number of features.\n",
"\n",
"- `y` : array-like, shape = [n_samples]\n",
"\n",
" Target values.\n",
"\n",
"- `fit_params` : dict of string -> object, optional\n",
"\n",
" Parameters to pass to to the fit method of classifier.\n",
"\n",
"**Returns**\n",
"\n",
"Feature subset of X, shape={n_samples, k_features}\n",
Expand Down Expand Up @@ -1815,7 +1827,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.1"
"version": "3.6.3"
}
},
"nbformat": 4,
Expand Down

0 comments on commit d1ef89f

Please sign in to comment.