Skip to content

Commit

Permalink
docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Sep 8, 2023
1 parent acfd2c8 commit 9153334
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions rdt/transformers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,8 @@ class BaseMultiColumnTransformer(BaseTransformer):
in order to create a new multi column transformer.
Attributes:
columns_to_sdtype (tuple):
Order of the columns to be used for the transformer.
columns_to_sdtype (dict):
Dictionary mapping each column to its sdtype.
prefixes (dict):
Dictionary mapping each output column to its prefix.
"""
Expand Down Expand Up @@ -572,8 +572,8 @@ def fit(self, data, columns_to_sdtype):
Args:
data (pandas.DataFrame):
The entire table.
columns_to_sdtype (tuple):
Order of the columns to be used for the transformer.
columns_to_sdtype (dict):
Dictionary mapping each column to its sdtype.
"""
self._validate_columns_to_sdtype(data, columns_to_sdtype)
self.columns_to_sdtype = columns_to_sdtype
Expand All @@ -589,8 +589,8 @@ def fit_transform(self, data, columns_to_sdtype):
Args:
data (pandas.DataFrame):
The entire table.
columns_to_sdtype (tuple):
Order of the columns to be used for the transformer.
columns_to_sdtype (dict):
Dictionary mapping each column to its sdtype.
Returns:
pd.DataFrame:
Expand Down

0 comments on commit 9153334

Please sign in to comment.