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
Describe the bug DataFrame should disallow iterable of DataFrames. I don't think it's well defined what a DataFrame element should represent
Steps/Code to reproduce bug
In [26]: cudf.DataFrame([cudf.DataFrame(range(2))]) Out[26]: 0 0 0 In [27]: pandas.DataFrame([pandas.DataFrame(range(2))]) ValueError: Must pass 2-d input. shape=(1, 2, 1)
Expected behavior cudf should also raise a ValueError possibly
Environment overview (please complete the following information)
The text was updated successfully, but these errors were encountered:
DataFrame
Restrict iterables of DataFrame's as input to DataFrame construct…
4467066
…or (#14118) Fixes: #14094 This PR raises an error when an iterates of `DataFrame`'s is detected in `DataFrame` constructor. Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Matthew Roeschke (https://github.com/mroeschke) URL: #14118
galipremsagar
Successfully merging a pull request may close this issue.
Describe the bug
DataFrame should disallow iterable of DataFrames. I don't think it's well defined what a DataFrame element should represent
Steps/Code to reproduce bug
Expected behavior
cudf should also raise a ValueError possibly
Environment overview (please complete the following information)
The text was updated successfully, but these errors were encountered: