We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ImportError: cannot import name 'load_data' from 'sktime.utils'.how did you slove this problem?
The text was updated successfully, but these errors were encountered:
I meet this problem too.
Sorry, something went wrong.
Change from sktime.utils import load_data to from sktime.datasets import load_from_tsfile_to_dataframe. df, labels = load_from_tsfile_to_dataframe(filepath, return_separate_X_and_y=True, replace_missing_vals_with='NaN').
from sktime.utils import load_data
from sktime.datasets import load_from_tsfile_to_dataframe
df, labels = load_from_tsfile_to_dataframe(filepath, return_separate_X_and_y=True, replace_missing_vals_with='NaN')
No branches or pull requests
ImportError: cannot import name 'load_data' from 'sktime.utils'.how did you slove this problem?
The text was updated successfully, but these errors were encountered: