Skip to content

Commit 2d488f2

Browse files
author
ragrawal
committed
fixed hyperlinks
1 parent 22ca0f8 commit 2d488f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Map the Columns to Transformations
7676
**********************************
7777

7878
The mapper takes a list of tuples. Each tuple has three elements:
79-
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>`_.
79+
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>`__.
8080
2. transformer(s): The second element is an object which will perform the transformation which will be applied to that column.
8181
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).
8282

@@ -164,7 +164,7 @@ Alternatively, you can also specify prefix and/or suffix to add to the column na
164164

165165
Dynamic Columns
166166
***********************
167-
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>`_.
167+
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>`__.
168168

169169

170170
>>> class GetColumnsStartingWith:

0 commit comments

Comments
 (0)