@@ -260,31 +260,28 @@ Preprocessing
260260 classes found which are ignored.
261261 :issue: `10913 ` by :user: `Rodrigo Agundez <rragundez> `.
262262
263- - :class: `preprocessing.QuantileTransformer ` handles and ignores NaN values.
264- :issue: `10404 ` by :user: `Guillaume Lemaitre <glemaitre> `.
265-
266- - Updated :class: `preprocessing.MinMaxScaler ` and
267- :func: `preprocessing.minmax_scale ` to pass through NaN values.
268- :issue: `10404 ` and :issue: `11243 ` by :user: `Lucija Gregov <LucijaGregov> ` and
263+ - NaN values are ignored and handled in the following preprocessing methods:
264+ :class: `preprocessing.MaxAbsScaler `,
265+ :class: `preprocessing.MinMaxScaler `,
266+ :class: `preprocessing.RobustScaler `,
267+ :class: `preprocessing.StandardScaler `,
268+ :class: `preprocessing.PowerTransformer `,
269+ :class: `preprocessing.QuantileTransformer ` classes and
270+ :func: `preprocessing.maxabs_scale `,
271+ :func: `preprocessing.minmax_scale `,
272+ :func: `preprocessing.robust_scale `,
273+ :func: `preprocessing.scale `,
274+ :func: `preprocessing.power_transform `,
275+ :func: `preprocessing.quantile_transform ` functions respectively addressed in
276+ issues :issue: `11011 `, :issue: `11005 `, :issue: `11308 `, :issue: `11206 `,
277+ :issue: `11306 `, and :issue: `10437 `.
278+ By :user: `Lucija Gregov <LucijaGregov> ` and
269279 :user: `Guillaume Lemaitre <glemaitre> `.
270280
271- - :class: `preprocessing.StandardScaler ` and :func: `preprocessing.scale `
272- ignore and pass-through NaN values.
273- :issue: `11206 ` by :user: `Guillaume Lemaitre <glemaitre> `.
274-
275- - :class: `preprocessing.MaxAbsScaler ` and :func: `preprocessing.maxabs_scale `
276- handles and ignores NaN values.
277- :issue: `11011 ` by `Lucija Gregov <LucihaGregov> ` and
278- :user: `Guillaume Lemaitre <glemaitre> `
279-
280- - :class: `preprocessing.PowerTransformer ` and
281- :func: `preprocessing.power_transform ` ignore and pass-through NaN values.
282- :issue: `11306 ` by :user: `Guillaume Lemaitre <glemaitre> `.
283281- :class: `preprocessing.RobustScaler ` and :func: `preprocessing.robust_scale `
284- ignore and pass-through NaN values. In addition, the scaler can now be fitted
285- on sparse matrices.
282+ can be fitted using sparse matrices.
286283 :issue: `11308 ` by :user: `Guillaume Lemaitre <glemaitre> `.
287-
284+
288285Model evaluation and meta-estimators
289286
290287- A scorer based on :func: `metrics.brier_score_loss ` is also available.
0 commit comments