Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tsfresh/transformers/feature_augmenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,12 @@ def transform(self, X):
)

return X

def set_output(self, *, transform = None):
"""
Set the output container format of the transform method.
Since it is assumed that the transformer output goes to the pd.DataFrame,
nothing is done (the method was created for compatibility with sklearn)
For example when calling sklearn.pipeline.FeatureUnion.set_output(transform="pandas")
"""
return self
Loading