1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
|
Sklearn-pandas
==============
.. image:: https://circleci.com/gh/scikit-learn-contrib/sklearn-pandas.svg?style=svg
:target: https://circleci.com/gh/scikit-learn-contrib/sklearn-pandas
.. image:: https://img.shields.io/pypi/v/sklearn-pandas.svg
:target: https://pypi.python.org/pypi/sklearn-pandas/
.. image:: https://anaconda.org/conda-forge/sklearn-pandas/badges/version.svg
:target: https://anaconda.org/conda-forge/sklearn-pandas/
This module provides a bridge between `Scikit-Learn <http://scikit-learn.org/stable>`__'s machine learning methods and `pandas <https://pandas.pydata.org>`__-style Data Frames.
In particular, it provides a way to map ``DataFrame`` columns to transformations, which are later recombined into features.
Installation
------------
You can install ``sklearn-pandas`` with ``pip``::
# pip install sklearn-pandas
or conda-forge::
# conda install -c conda-forge sklearn-pandas
Tests
-----
The examples in this file double as basic sanity tests. To run them, use ``doctest``, which is included with python::
# python -m doctest README.rst
Usage
-----
Import
******
Import what you need from the ``sklearn_pandas`` package. The choices are:
* ``DataFrameMapper``, a class for mapping pandas data frame columns to different sklearn transformations
For this demonstration, we will import both::
>>> from sklearn_pandas import DataFrameMapper
For these examples, we'll also use pandas, numpy, and sklearn::
>>> import pandas as pd
>>> import numpy as np
>>> import sklearn.preprocessing, sklearn.decomposition, \
... sklearn.linear_model, sklearn.pipeline, sklearn.metrics, \
... sklearn.compose
>>> from sklearn.feature_extraction.text import CountVectorizer
Load some Data
**************
Normally you'll read the data from a file, but for demonstration purposes we'll create a data frame from a Python dict::
>>> data = pd.DataFrame({'pet': ['cat', 'dog', 'dog', 'fish', 'cat', 'dog', 'cat', 'fish'],
... 'children': [4., 6, 3, 3, 2, 3, 5, 4],
... 'salary': [90., 24, 44, 27, 32, 59, 36, 27]})
Transformation Mapping
----------------------
Map the Columns to Transformations
**********************************
The mapper takes a list of tuples. Each tuple has three elements:
1. column name(s): The first element is a column name from the pandas DataFrame, or a list containing one or multiple columns (we will see an example with multiple columns later) or an instance of a callable function such as `make_column_selector <https://scikit-learn.org/stable/modules/generated/sklearn.compose.make_column_selector.html>`__.
2. transformer(s): The second element is an object which will perform the transformation which will be applied to that column.
3. attributes: The third one is optional and is a dictionary containing the transformation options, if applicable (see "custom column names for transformed features" below).
Let's see an example::
>>> mapper = DataFrameMapper([
... ('pet', sklearn.preprocessing.LabelBinarizer()),
... (['children'], sklearn.preprocessing.StandardScaler())
... ])
The difference between specifying the column selector as ``'column'`` (as a simple string) and ``['column']`` (as a list with one element) is the shape of the array that is passed to the transformer. In the first case, a one dimensional array will be passed, while in the second case it will be a 2-dimensional array with one column, i.e. a column vector.
This behaviour mimics the same pattern as pandas' dataframes ``__getitem__`` indexing:
>>> data['children'].shape
(8,)
>>> data[['children']].shape
(8, 1)
Be aware that some transformers expect a 1-dimensional input (the label-oriented ones) while some others, like ``OneHotEncoder`` or ``Imputer``, expect 2-dimensional input, with the shape ``[n_samples, n_features]``.
Test the Transformation
***********************
We can use the ``fit_transform`` shortcut to both fit the model and see what transformed data looks like. In this and the other examples, output is rounded to two digits with ``np.round`` to account for rounding errors on different hardware::
>>> np.round(mapper.fit_transform(data.copy()), 2)
array([[ 1. , 0. , 0. , 0.21],
[ 0. , 1. , 0. , 1.88],
[ 0. , 1. , 0. , -0.63],
[ 0. , 0. , 1. , -0.63],
[ 1. , 0. , 0. , -1.46],
[ 0. , 1. , 0. , -0.63],
[ 1. , 0. , 0. , 1.04],
[ 0. , 0. , 1. , 0.21]])
Note that the first three columns are the output of the ``LabelBinarizer`` (corresponding to ``cat``, ``dog``, and ``fish`` respectively) and the fourth column is the standardized value for the number of children. In general, the columns are ordered according to the order given when the ``DataFrameMapper`` is constructed.
Now that the transformation is trained, we confirm that it works on new data::
>>> sample = pd.DataFrame({'pet': ['cat'], 'children': [5.]})
>>> np.round(mapper.transform(sample), 2)
array([[1. , 0. , 0. , 1.04]])
Output features names
*********************
In certain cases, like when studying the feature importances for some model,
we want to be able to associate the original features to the ones generated by
the dataframe mapper. We can do so by inspecting the automatically generated ``transformed_names_`` attribute of the mapper after transformation::
>>> mapper.transformed_names_
['pet_cat', 'pet_dog', 'pet_fish', 'children']
Custom column names for transformed features
********************************************
We can provide a custom name for the transformed features, to be used instead
of the automatically generated one, by specifying it as the third argument
of the feature definition::
>>> mapper_alias = DataFrameMapper([
... (['children'], sklearn.preprocessing.StandardScaler(),
... {'alias': 'children_scaled'})
... ])
>>> _ = mapper_alias.fit_transform(data.copy())
>>> mapper_alias.transformed_names_
['children_scaled']
Alternatively, you can also specify prefix and/or suffix to add to the column name. For example::
>>> mapper_alias = DataFrameMapper([
... (['children'], sklearn.preprocessing.StandardScaler(), {'prefix': 'standard_scaled_'}),
... (['children'], sklearn.preprocessing.StandardScaler(), {'suffix': '_raw'})
... ])
>>> _ = mapper_alias.fit_transform(data.copy())
>>> mapper_alias.transformed_names_
['standard_scaled_children', 'children_raw']
Dynamic Columns
***********************
In some situations the columns are not known before hand and we would like to dynamically select them during the fit operation. As shown below, in such situations you can provide either a custom callable or use `make_column_selector <https://scikit-learn.org/stable/modules/generated/sklearn.compose.make_column_selector.html>`__.
>>> class GetColumnsStartingWith:
... def __init__(self, start_str):
... self.pattern = start_str
...
... def __call__(self, X:pd.DataFrame=None):
... return [c for c in X.columns if c.startswith(self.pattern)]
...
>>> df = pd.DataFrame({
... 'sepal length (cm)': [1.0, 2.0, 3.0],
... 'sepal width (cm)': [1.0, 2.0, 3.0],
... 'petal length (cm)': [1.0, 2.0, 3.0],
... 'petal width (cm)': [1.0, 2.0, 3.0]
... })
>>> t = DataFrameMapper([
... (
... sklearn.compose.make_column_selector(dtype_include=float),
... sklearn.preprocessing.StandardScaler(),
... {'alias': 'x'}
... ),
... (
... GetColumnsStartingWith('petal'),
... None,
... {'alias': 'petal'}
... )], df_out=True, default=False)
>>> t.fit(df).transform(df).shape
(3, 6)
>>> t.transformed_names_
['x_0', 'x_1', 'x_2', 'x_3', 'petal_0', 'petal_1']
Above we use `make_column_selector` to select all columns that are of type float and also use a custom callable function to select columns that start with the word 'petal'.
Passing Series/DataFrames to the transformers
*********************************************
By default the transformers are passed a numpy array of the selected columns
as input. This is because ``sklearn`` transformers are historically designed to
work with numpy arrays, not with pandas dataframes, even though their basic
indexing interfaces are similar.
However we can pass a dataframe/series to the transformers to handle custom
cases initializing the dataframe mapper with ``input_df=True``::
>>> from sklearn.base import TransformerMixin
>>> class DateEncoder(TransformerMixin):
... def fit(self, X, y=None):
... return self
...
... def transform(self, X):
... dt = X.dt
... return pd.concat([dt.year, dt.month, dt.day], axis=1)
>>> dates_df = pd.DataFrame(
... {'dates': pd.date_range('2015-10-30', '2015-11-02')})
>>> mapper_dates = DataFrameMapper([
... ('dates', DateEncoder())
... ], input_df=True)
>>> mapper_dates.fit_transform(dates_df)
array([[2015, 10, 30],
[2015, 10, 31],
[2015, 11, 1],
[2015, 11, 2]])
We can also specify this option per group of columns instead of for the
whole mapper::
>>> mapper_dates = DataFrameMapper([
... ('dates', DateEncoder(), {'input_df': True})
... ])
>>> mapper_dates.fit_transform(dates_df)
array([[2015, 10, 30],
[2015, 10, 31],
[2015, 11, 1],
[2015, 11, 2]])
Outputting a dataframe
**********************
By default the output of the dataframe mapper is a numpy array. This is so because most sklearn estimators expect a numpy array as input. If however we want the output of the mapper to be a dataframe, we can do so using the parameter ``df_out`` when creating the mapper::
>>> mapper_df = DataFrameMapper([
... ('pet', sklearn.preprocessing.LabelBinarizer()),
... (['children'], sklearn.preprocessing.StandardScaler())
... ], df_out=True)
>>> np.round(mapper_df.fit_transform(data.copy()), 2)
pet_cat pet_dog pet_fish children
0 1 0 0 0.21
1 0 1 0 1.88
2 0 1 0 -0.63
3 0 0 1 -0.63
4 1 0 0 -1.46
5 0 1 0 -0.63
6 1 0 0 1.04
7 0 0 1 0.21
The names for the columns are the same ones present in the ``transformed_names_``
attribute.
Note this does not work together with the ``default=True`` or ``sparse=True`` arguments to the mapper.
Dropping columns explictly
*******************************
Sometimes it is required to drop a specific column/ list of columns.
For this purpose, ``drop_cols`` argument for ``DataFrameMapper`` can be used.
Default value is ``None``
>>> mapper_df = DataFrameMapper([
... ('pet', sklearn.preprocessing.LabelBinarizer()),
... (['children'], sklearn.preprocessing.StandardScaler())
... ], drop_cols=['salary'])
Now running ``fit_transform`` will run transformations on 'pet' and 'children' and drop 'salary' column:
>>> np.round(mapper_df.fit_transform(data.copy()), 1)
array([[ 1. , 0. , 0. , 0.2],
[ 0. , 1. , 0. , 1.9],
[ 0. , 1. , 0. , -0.6],
[ 0. , 0. , 1. , -0.6],
[ 1. , 0. , 0. , -1.5],
[ 0. , 1. , 0. , -0.6],
[ 1. , 0. , 0. , 1. ],
[ 0. , 0. , 1. , 0.2]])
Transformations may require multiple input columns. In these
Transform Multiple Columns
**************************
Transformations may require multiple input columns. In these cases, the column names can be specified in a list::
>>> mapper2 = DataFrameMapper([
... (['children', 'salary'], sklearn.decomposition.PCA(1))
... ])
Now running ``fit_transform`` will run PCA on the ``children`` and ``salary`` columns and return the first principal component::
>>> np.round(mapper2.fit_transform(data.copy()), 1)
array([[ 47.6],
[-18.4],
[ 1.6],
[-15.4],
[-10.4],
[ 16.6],
[ -6.4],
[-15.4]])
Multiple transformers for the same column
*****************************************
Multiple transformers can be applied to the same column specifying them
in a list::
>>> from sklearn.impute import SimpleImputer
>>> mapper3 = DataFrameMapper([
... (['age'], [SimpleImputer(),
... sklearn.preprocessing.StandardScaler()])])
>>> data_3 = pd.DataFrame({'age': [1, np.nan, 3]})
>>> mapper3.fit_transform(data_3)
array([[-1.22474487],
[ 0. ],
[ 1.22474487]])
Columns that don't need any transformation
******************************************
Only columns that are listed in the DataFrameMapper are kept. To keep a column but don't apply any transformation to it, use `None` as transformer::
>>> mapper3 = DataFrameMapper([
... ('pet', sklearn.preprocessing.LabelBinarizer()),
... ('children', None)
... ])
>>> np.round(mapper3.fit_transform(data.copy()))
array([[1., 0., 0., 4.],
[0., 1., 0., 6.],
[0., 1., 0., 3.],
[0., 0., 1., 3.],
[1., 0., 0., 2.],
[0., 1., 0., 3.],
[1., 0., 0., 5.],
[0., 0., 1., 4.]])
Applying a default transformer
******************************
A default transformer can be applied to columns not explicitly selected
passing it as the ``default`` argument to the mapper:
>>> mapper4 = DataFrameMapper([
... ('pet', sklearn.preprocessing.LabelBinarizer()),
... ('children', None)
... ], default=sklearn.preprocessing.StandardScaler())
>>> np.round(mapper4.fit_transform(data.copy()), 1)
array([[ 1. , 0. , 0. , 4. , 2.3],
[ 0. , 1. , 0. , 6. , -0.9],
[ 0. , 1. , 0. , 3. , 0.1],
[ 0. , 0. , 1. , 3. , -0.7],
[ 1. , 0. , 0. , 2. , -0.5],
[ 0. , 1. , 0. , 3. , 0.8],
[ 1. , 0. , 0. , 5. , -0.3],
[ 0. , 0. , 1. , 4. , -0.7]])
Using ``default=False`` (the default) drops unselected columns. Using
``default=None`` pass the unselected columns unchanged.
Same transformer for the multiple columns
*****************************************
Sometimes it is required to apply the same transformation to several dataframe columns.
To simplify this process, the package provides ``gen_features`` function which accepts a list
of columns and feature transformer class (or list of classes), and generates a feature definition,
acceptable by ``DataFrameMapper``.
For example, consider a dataset with three categorical columns, 'col1', 'col2', and 'col3',
To binarize each of them, one could pass column names and ``LabelBinarizer`` transformer class
into generator, and then use returned definition as ``features`` argument for ``DataFrameMapper``:
>>> from sklearn_pandas import gen_features
>>> feature_def = gen_features(
... columns=['col1', 'col2', 'col3'],
... classes=[sklearn.preprocessing.LabelEncoder]
... )
>>> feature_def
[('col1', [LabelEncoder()], {}), ('col2', [LabelEncoder()], {}), ('col3', [LabelEncoder()], {})]
>>> mapper5 = DataFrameMapper(feature_def)
>>> data5 = pd.DataFrame({
... 'col1': ['yes', 'no', 'yes'],
... 'col2': [True, False, False],
... 'col3': ['one', 'two', 'three']
... })
>>> mapper5.fit_transform(data5)
array([[1, 1, 0],
[0, 0, 2],
[1, 0, 1]])
If it is required to override some of transformer parameters, then a dict with 'class' key and
transformer parameters should be provided. For example, consider a dataset with missing values.
Then the following code could be used to override default imputing strategy:
>>> from sklearn.impute import SimpleImputer
>>> import numpy as np
>>> feature_def = gen_features(
... columns=[['col1'], ['col2'], ['col3']],
... classes=[{'class': SimpleImputer, 'strategy':'most_frequent'}]
... )
>>> mapper6 = DataFrameMapper(feature_def)
>>> data6 = pd.DataFrame({
... 'col1': [np.nan, 1, 1, 2, 3],
... 'col2': [True, False, np.nan, np.nan, True],
... 'col3': [0, 0, 0, np.nan, np.nan]
... })
>>> mapper6.fit_transform(data6)
array([[1.0, True, 0.0],
[1.0, False, 0.0],
[1.0, True, 0.0],
[2.0, True, 0.0],
[3.0, True, 0.0]], dtype=object)
You can also specify global prefix or suffix for the generated transformed column names using the prefix and suffix
parameters::
>>> feature_def = gen_features(
... columns=['col1', 'col2', 'col3'],
... classes=[sklearn.preprocessing.LabelEncoder],
... prefix="lblencoder_"
... )
>>> mapper5 = DataFrameMapper(feature_def)
>>> data5 = pd.DataFrame({
... 'col1': ['yes', 'no', 'yes'],
... 'col2': [True, False, False],
... 'col3': ['one', 'two', 'three']
... })
>>> _ = mapper5.fit_transform(data5)
>>> mapper5.transformed_names_
['lblencoder_col1', 'lblencoder_col2', 'lblencoder_col3']
Feature selection and other supervised transformations
******************************************************
``DataFrameMapper`` supports transformers that require both X and y arguments. An example of this is feature selection. Treating the 'pet' column as the target, we will select the column that best predicts it.
>>> from sklearn.feature_selection import SelectKBest, chi2
>>> mapper_fs = DataFrameMapper([(['children','salary'], SelectKBest(chi2, k=1))])
>>> mapper_fs.fit_transform(data[['children','salary']], data['pet'])
array([[90.],
[24.],
[44.],
[27.],
[32.],
[59.],
[36.],
[27.]])
Working with sparse features
****************************
A ``DataFrameMapper`` will return a dense feature array by default. Setting ``sparse=True`` in the mapper will return
a sparse array whenever any of the extracted features is sparse. Example:
>>> mapper5 = DataFrameMapper([
... ('pet', CountVectorizer()),
... ], sparse=True)
>>> type(mapper5.fit_transform(data))
<class 'scipy.sparse.csr.csr_matrix'>
The stacking of the sparse features is done without ever densifying them.
Using ``NumericalTransformer``
***********************************
While you can use ``FunctionTransformation`` to generate arbitrary transformers, it can present serialization issues
when pickling. Use ``NumericalTransformer`` instead, which takes the function name as a string parameter and hence
can be easily serialized.
>>> from sklearn_pandas import NumericalTransformer
>>> mapper5 = DataFrameMapper([
... ('children', NumericalTransformer('log')),
... ])
>>> mapper5.fit_transform(data)
array([[1.38629436],
[1.79175947],
[1.09861229],
[1.09861229],
[0.69314718],
[1.09861229],
[1.60943791],
[1.38629436]])
Changing Logging level
***********************************
You can change log level to info to print time take to fit/transform features. Setting it to higher level will stop printing elapsed time.
Below example shows how to change logging level.
>>> import logging
>>> logging.getLogger('sklearn_pandas').setLevel(logging.INFO)
Changelog
---------
2.2.0 (2021-05-07)
******************
* Added an ability to provide callable functions instead of static column list.
2.1.0 (2021-02-26)
******************
* Removed test for Python 3.6 and added Python 3.9
* Added deprecation warning for NumericalTransformer
* Fixed pickling issue causing integration issues with Baikal.
* Started publishing package to conda repo
2.0.4 (2020-11-06)
******************
* Explicitly handling serialization (#224)
* document fixes
* Making transform function thread safe (#194)
* Switched to nox for unit testing (#226)
2.0.3 (2020-11-06)
******************
* Added elapsed time information for each feature.
2.0.2 (2020-10-01)
******************
* Fix `DataFrameMapper` drop_cols attribute naming consistency with scikit-learn and initialization.
2.0.1 (2020-09-07)
******************
* Added an option to explicitly drop columns.
2.0.0 (2020-08-01)
******************
* Deprecated support for Python < 3.6.
* Deprecated support for old versions of scikit-learn, pandas and numpy. Please check setup.py for minimum requirement.
* Removed CategoricalImputer, cross_val_score and GridSearchCV. All these functionality now exists as part of
scikit-learn. Please use SimpleImputer instead of CategoricalImputer. Also
Cross validation from sklearn now supports dataframe so we don't need to use cross validation wrapper provided over
here.
* Added ``NumericalTransformer`` for common numerical transformations. Currently it implements log and log1p
transformation.
* Added prefix and suffix options. See examples above. These are usually helpful when using gen_features.
* Added ``drop_cols`` argument to DataframeMapper. This can be used to explicitly drop columns
1.8.0 (2018-12-01)
******************
* Add ``FunctionTransformer`` class (#117).
* Fix column names derivation for dataframes with multi-index or non-string
columns (#166).
* Change behaviour of DataFrameMapper's fit_transform method to invoke each underlying transformers'
native fit_transform if implemented (#150).
1.7.0 (2018-08-15)
******************
* Fix issues with unicode names in ``get_names`` (#160).
* Update to build using ``numpy==1.14`` and ``python==3.6`` (#154).
* Add ``strategy`` and ``fill_value`` parameters to ``CategoricalImputer`` to allow imputing
with values other than the mode (#144),(#161).
* Preserve input data types when no transform is supplied (#138).
1.6.0 (2017-10-28)
******************
* Add column name to exception during fit/transform (#110).
* Add ``gen_feature`` helper function to help generating the same transformation for multiple columns (#126).
1.5.0 (2017-06-24)
******************
* Allow inputting a dataframe/series per group of columns.
* Get feature names also from ``estimator.get_feature_names()`` if present.
* Attempt to derive feature names from individual transformers when applying a
list of transformers.
* Do not mutate features in ``__init__`` to be compatible with
``sklearn>=0.20`` (#76).
1.4.0 (2017-05-13)
******************
* Allow specifying a custom name (alias) for transformed columns (#83).
* Capture output columns generated names in ``transformed_names_`` attribute (#78).
* Add ``CategoricalImputer`` that replaces null-like values with the mode
for string-like columns.
* Add ``input_df`` init argument to allow inputting a dataframe/series to the
transformers instead of a numpy array (#60).
1.3.0 (2017-01-21)
******************
* Make the mapper return dataframes when ``df_out=True`` (#70, #74).
* Update imports to avoid deprecation warnings in sklearn 0.18 (#68).
1.2.0 (2016-10-02)
******************
* Deprecate custom cross-validation shim classes.
* Require ``scikit-learn>=0.15.0``. Resolves #49.
* Allow applying a default transformer to columns not selected explicitly in
the mapper. Resolves #55.
* Allow specifying an optional ``y`` argument during transform for
supervised transformations. Resolves #58.
1.1.0 (2015-12-06)
*******************
* Delete obsolete ``PassThroughTransformer``. If no transformation is desired for a given column, use ``None`` as transformer.
* Factor out code in several modules, to avoid having everything in ``__init__.py``.
* Use custom ``TransformerPipeline`` class to allow transformation steps accepting only a X argument. Fixes #46.
* Add compatibility shim for unpickling mappers with list of transformers created before 1.0.0. Fixes #45.
1.0.0 (2015-11-28)
*******************
* Change version numbering scheme to SemVer.
* Use ``sklearn.pipeline.Pipeline`` instead of copying its code. Resolves #43.
* Raise ``KeyError`` when selecting unexistent columns in the dataframe. Fixes #30.
* Return sparse feature array if any of the features is sparse and ``sparse`` argument is ``True``. Defaults to ``False`` to avoid potential breaking of existing code. Resolves #34.
* Return model and prediction in custom CV classes. Fixes #27.
0.0.12 (2015-11-07)
********************
* Allow specifying a list of transformers to use sequentially on the same column.
Credits
-------
The code for ``DataFrameMapper`` is based on code originally written by `Ben Hamner <https://github.com/benhamner>`__.
Other contributors:
* Ariel Rossanigo (@arielrossanigo)
* Arnau Gil Amat (@arnau126)
* Assaf Ben-David (@AssafBenDavid)
* Brendan Herger (@bjherger)
* Cal Paterson (@calpaterson)
* @defvorfu
* Floris Hoogenboom (@FlorisHoogenboom)
* Gustavo Sena Mafra (@gsmafra)
* Israel Saeta Pérez (@dukebody)
* Jeremy Howard (@jph00)
* Jimmy Wan (@jimmywan)
* Kristof Van Engeland (@kristofve91)
* Olivier Grisel (@ogrisel)
* Paul Butler (@paulgb)
* Richard Miller (@rwjmiller)
* Ritesh Agrawal (@ragrawal)
* @SandroCasagrande
* Timothy Sweetser (@hacktuarial)
* Vitaley Zaretskey (@vzaretsk)
* Zac Stewart (@zacstewart)
* Parul Singh (@paro1234)
* Vincent Heusinkveld (@VHeusinkveld)
|