-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve documentation on "impute_function" #754
Comments
Ok, so I figured out that the Currently the definition is as follows
|
Thanks for getting back to the issue and looking for the solution by yourself. If you have a a good suggestion, we would love to see a PR :-) |
* Fix imputing docu, solving #754 * Stylefix
I receive an error when passing a dataframe with nan in some columns in the following code where df_rolled is the output of
roll_time_series
:from tsfresh.feature_extraction import extract_features, EfficientFCParameters
from tsfresh.utilities.dataframe_functions import impute
extraction_setting = EfficientFCParameters()
X = extract_features(df_rolled, column_id="id", column_sort="month", default_fc_parameters=extraction_setting, impute_function=impute, show_warnings=False)
ValueError: Column must not contain NaN values: ratio_last_sum_PPDOS
There is an old issue #18 but it appears that
tsfresh.feature_extraction. FeatureExtractionSettings
doesn't exist anymore.The text was updated successfully, but these errors were encountered: