Skip to content

Commit

Permalink
Fix imputing docu, solving #754
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-braun committed Jan 24, 2021
1 parent ece2327 commit 6d9d63e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tsfresh/feature_extraction/extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ def extract_features(timeseries_container, default_fc_parameters=None,
:param disable_progressbar: Do not show a progressbar while doing the calculation.
:type disable_progressbar: bool
:param impute_function: None, if no imputing should happen or the function to call for imputing.
:param impute_function: None, if no imputing should happen or the function to call for imputing the result dataframe.
Imputing will never happen on the input data.
:type impute_function: None or callable
:param profile: Turn on profiling during feature extraction
Expand Down
3 changes: 2 additions & 1 deletion tsfresh/transformers/feature_augmenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ def __init__(self, default_fc_parameters=None,
:param disable_progressbar: Do not show a progressbar while doing the calculation.
:type disable_progressbar: bool
:param impute_function: None, if no imputing should happen or the function to call for imputing.
:param impute_function: None, if no imputing should happen or the function to call for imputing the result dataframe.
Imputing will never happen on the input data.
:type impute_function: None or function
:param profile: Turn on profiling during feature extraction
Expand Down

0 comments on commit 6d9d63e

Please sign in to comment.